Author: Sylvain Loiseau
License: BSD_3_clause
# stable version:
install.packages("interlineaR")
# development version:
devtools::install_github("sylvainloiseau/interlineaR", build_vignettes=TRUE)
Import an interlinearised corpus in the EMELD XML format (as exported from SIL FieldWorks for instance):
path <- system.file("exampleData", "tuwariInterlinear.xml", package="interlineaR")
corpus <- read.emeld(path, vernacular.languages="tww")
Import an interlinearised corpus in Toolbox (SIL) format:
path <- system.file("exampleData", "tuwariToolbox.txt", package="interlineaR")
corpus <- read.toolbox(path)
Import a dictionary in the LIFT XML format (as exported from SIL FieldWorks for instance):
dicpath <- system.file("exampleData", "tuwariDictionary.lift", package="interlineaR")
dictionary <- read.lift(dicpath, language.code="tww")
See the vignette interlineaR for an overview of the data model and the functions of this package.