Hello Everyone,
Inspired by Chris' post from the other day, I've posted an R package to github called FAVErtools.
Right now, it mostly contains functions for dealing with plotnik files and plotnik codes.
- read.plotnik() reads in plotnik codes. This version is compatible with the new plotnik format that includes extended formant tracks.
- plt_*() functions convert various plotnik codes to a more readable format.
The plt_*() functions can be used on the non-plotnik output from FAVE-extract, which still utilize the numeric coding. More info is available in the repository readme and in the package documentation. To install it as an R package from github, you'll need to have the devtools package installed. The code is then
library(devtools)
install_github("FAVErtools", "JoFrhwld")
Then you can load it like a normal R package with library().
-Joe