write_data
write_data(vowel_spaces, destination=Path('.'), which='all', separate=False)
Save data.
Intended usage
There are multiple data output types, including
tracks
: Vowel formant trackspoints
: Point measurementsparam
: DCT parameters on Hzlog_param
: DCT parameters on log(Hz)textgrid
: The recoded textgrid
By default, they will all be saved.
Parameters
Name | Type | Description | Default |
---|---|---|---|
vowel_spaces |
SpeakerCollection | An entire SpeakerCollection |
required |
destination |
str | Path | Destination directory. Defaults to Path(".") . |
Path('.') |
which |
Literal[‘all’] | list[Literal[‘tracks’, ‘points’, ‘param’, ‘log_param’, ‘textgrid’]] | Which data to save. The values are described above. Defaults to “all”. | 'all' |
separate |
bool | Whether or not to write separate .csv s for each individual speaker. Defaults to False. |
False |