write.trackdata {emu}R Documentation

Write track data objects to file

Description

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.

Usage

   write.trackdata(trackdata, file)

Arguments

trackdata track data object
file file name

Value

a file with the track data is written to the given path

Author(s)

Jonathan Harrington

See Also

read.trackdata

Examples

   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")


[Package emu version 4.0 Index]