├── .Rbuildignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── count.R ├── topics.R └── tpx.R ├── README.md ├── inst └── CITATION ├── man ├── counts.Rd ├── predict.topics.Rd ├── rdir.Rd ├── topicVar.Rd └── topics.Rd └── src ├── Makevars ├── init.c ├── latools.c ├── latools.h ├── rhelp.c ├── rhelp.h └── topics.c /.Rbuildignore: -------------------------------------------------------------------------------- 1 | .git/* 2 | .git 3 | README.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/count.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/R/count.R -------------------------------------------------------------------------------- /R/topics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/R/topics.R -------------------------------------------------------------------------------- /R/tpx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/R/tpx.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/man/counts.Rd -------------------------------------------------------------------------------- /man/predict.topics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/man/predict.topics.Rd -------------------------------------------------------------------------------- /man/rdir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/man/rdir.Rd -------------------------------------------------------------------------------- /man/topicVar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/man/topicVar.Rd -------------------------------------------------------------------------------- /man/topics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/man/topics.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/init.c -------------------------------------------------------------------------------- /src/latools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/latools.c -------------------------------------------------------------------------------- /src/latools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/latools.h -------------------------------------------------------------------------------- /src/rhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/rhelp.c -------------------------------------------------------------------------------- /src/rhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/rhelp.h -------------------------------------------------------------------------------- /src/topics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaddyLab/maptpx/HEAD/src/topics.c --------------------------------------------------------------------------------