├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── distances.R ├── expressions.R ├── franc.R ├── ngrams.R ├── normalize.R ├── script.R ├── speakers.R └── trigrams.R ├── README.md ├── appveyor.yml ├── inst ├── README.Rmd ├── README.md ├── data.json └── speakers.json ├── man ├── franc.Rd ├── franc_all.Rd └── speakers.Rd └── tests ├── testthat.R └── testthat ├── fixtures.json ├── support.json ├── test-distances.R ├── test-franc.R ├── test-scripts.R ├── test-trigrams.R ├── test-udhr.R └── test-utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | 2 | # 1.0.0 3 | 4 | First public release. 5 | -------------------------------------------------------------------------------- /R/distances.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/distances.R -------------------------------------------------------------------------------- /R/expressions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/expressions.R -------------------------------------------------------------------------------- /R/franc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/franc.R -------------------------------------------------------------------------------- /R/ngrams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/ngrams.R -------------------------------------------------------------------------------- /R/normalize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/normalize.R -------------------------------------------------------------------------------- /R/script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/script.R -------------------------------------------------------------------------------- /R/speakers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/speakers.R -------------------------------------------------------------------------------- /R/trigrams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/R/trigrams.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | inst/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/inst/README.Rmd -------------------------------------------------------------------------------- /inst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/inst/README.md -------------------------------------------------------------------------------- /inst/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/inst/data.json -------------------------------------------------------------------------------- /inst/speakers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/inst/speakers.json -------------------------------------------------------------------------------- /man/franc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/man/franc.Rd -------------------------------------------------------------------------------- /man/franc_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/man/franc_all.Rd -------------------------------------------------------------------------------- /man/speakers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/man/speakers.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/fixtures.json -------------------------------------------------------------------------------- /tests/testthat/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/support.json -------------------------------------------------------------------------------- /tests/testthat/test-distances.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/test-distances.R -------------------------------------------------------------------------------- /tests/testthat/test-franc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/test-franc.R -------------------------------------------------------------------------------- /tests/testthat/test-scripts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/test-scripts.R -------------------------------------------------------------------------------- /tests/testthat/test-trigrams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/test-trigrams.R -------------------------------------------------------------------------------- /tests/testthat/test-udhr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/test-udhr.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/franc/HEAD/tests/testthat/test-utils.R --------------------------------------------------------------------------------