Description Usage Arguments Details Value See Also Examples
Creates new and empty TextGrid. tMin and tMax specify the total start
and end time for the TextGrid. If a new interval tier is added later
without specified start and end, they are set to TextGrid start and end.
| 1 | tg.createNewTextGrid(tMin, tMax)
 | 
| tMin | Start time of TextGrid | 
| tMax | End time of TextGrid | 
This empty TextGrid cannot be used for almost anything. At least one tier
should be inserted using tg.insertNewIntervalTier() or tg.insertNewPointTier().
TextGrid object
tg.insertNewIntervalTier, tg.insertNewPointTier
| 1 2 3 4 | tg <- tg.createNewTextGrid(0, 5)
tg <- tg.insertNewIntervalTier(tg, 1, "word")
tg <- tg.insertInterval(tg, "word", 1, 2, "hello")
tg.plot(tg)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.