| write.trackdata {emu} | R Documentation |
The track data object can be saved to a text file in a format
suitable for loading into other applications. Single point data is saved in a simple table.
Multiple point per segment data is stored in columns with more than one entry per segment.
Use read.trackdata to load the file into R.
write.trackdata(trackdata, file)
trackdata |
track data object or track data object as character |
file |
file name |
a file with the track data is written to the given path
Jonathan Harrington
data(dip)
#Formant track data of the segment list dip (see data(dip)) - first segment only
dip.fdat[1]
## Not run: write.trackdata(dip.fdat, "emu.write.track.example.txt")
#There is a file emu.write.track.example.txt would have been written to R_HOME/
#that includes the track data
## Not run: unlink("emu.write.track.example.txt")