├── .gitignore ├── README.Rmd ├── README.md ├── articles ├── Blei2003.pdf ├── Blei2007.pdf ├── Blei2008.pdf ├── Blei2009.pdf ├── Blei2012.pdf ├── Chang2009.pdf ├── Griffiths2004.pdf ├── Griffiths2007.pdf ├── Gruen2011.pdf ├── Mimno2007.pdf ├── Mimno2013.Rmd ├── Newman2006.pdf ├── Papadimitriou1997.pdf ├── Ponweiser2012.pdf ├── Roberts2013.pdf ├── Roberts2014.pdf ├── Robertsnd.pdf ├── Sievert2014a.pdf ├── Sievert2014b.pdf ├── Srivastava2009.pdf ├── Steyvers2007.pdf ├── Taddy2012.pdf └── Tang2014.pdf ├── data ├── Jockers_data │ ├── plainText │ │ ├── austen.txt │ │ └── melville.txt │ └── taggedCorpus │ │ ├── Carleton1.xml.txt │ │ ├── Carleton10.xml.txt │ │ ├── Carleton11.xml.txt │ │ ├── Carleton12.xml.txt │ │ ├── Carleton13.xml.txt │ │ ├── Carleton14.xml.txt │ │ ├── Carleton2.xml.txt │ │ ├── Carleton3.xml.txt │ │ ├── Carleton4.xml.txt │ │ ├── Carleton5.xml.txt │ │ ├── Carleton6.xml.txt │ │ ├── Carleton7.xml.txt │ │ ├── Carleton8.xml.txt │ │ ├── Carleton9.xml.txt │ │ ├── Edgeworth1.xml.txt │ │ ├── LeFanu1.xml.txt │ │ ├── LeFanu2.xml.txt │ │ ├── LeFanu3.xml.txt │ │ ├── LeFanu4.xml.txt │ │ ├── LeFanu5.xml.txt │ │ ├── LeFanu6.xml.txt │ │ ├── LeFanu7.xml.txt │ │ ├── Lewis.xml.txt │ │ ├── Norris1.xml.txt │ │ ├── Norris2.xml.txt │ │ ├── Norris3.xml.txt │ │ ├── Norris4.xml.txt │ │ ├── Polidori1.xml.txt │ │ ├── Quigley1.xml.txt │ │ ├── Quigley2.xml.txt │ │ ├── anonymous.xml.txt │ │ ├── donovan1.xml.txt │ │ ├── donovan2.xml.txt │ │ ├── driscoll1.xml.txt │ │ ├── driscoll2.xml.txt │ │ ├── driscoll3.xml.txt │ │ ├── jessop1.xml.txt │ │ ├── jessop2.xml.txt │ │ ├── jessop3.xml.txt │ │ ├── kyne1.xml.txt │ │ ├── kyne2.xml.txt │ │ ├── mcHenry1.xml.txt │ │ └── mcHenry2.xml.txt ├── LDAvis_reviews.txt ├── mallet_texts │ ├── README │ ├── numeric │ │ ├── boxes.txt │ │ └── puffins.txt │ └── web │ │ ├── de │ │ ├── apollo8.txt │ │ ├── fiv.txt │ │ ├── habichtsadler.txt │ │ ├── hoechst.txt │ │ ├── indogermanische.txt │ │ ├── konrad.txt │ │ ├── marcellinus.txt │ │ ├── rostock.txt │ │ ├── sadat.txt │ │ ├── t40.txt │ │ ├── ulrich.txt │ │ └── wildenstein.txt │ │ └── en │ │ ├── elizabeth_needham.txt │ │ ├── equipartition_theorem.txt │ │ ├── gunnhild.txt │ │ ├── hawes.txt │ │ ├── hill.txt │ │ ├── shiloh.txt │ │ ├── sunderland_echo.txt │ │ ├── thespis.txt │ │ ├── thylacine.txt │ │ ├── uranus.txt │ │ ├── yard.txt │ │ └── zinta.txt ├── recipes │ ├── README.md │ ├── allr_recipes.txt │ ├── epic_recipes.txt │ ├── map.txt │ └── menu_recipes.txt └── stm_gadarian.csv ├── functions ├── optimal_k.R └── topicmodels2LDAvis.R ├── inst └── figure │ ├── topic-model.jpg │ ├── unnamed-chunk-10-1.png │ ├── unnamed-chunk-11-1.png │ ├── unnamed-chunk-12-1.png │ ├── unnamed-chunk-5-1.png │ ├── unnamed-chunk-6-1.png │ ├── unnamed-chunk-7-1.png │ ├── unnamed-chunk-8-1.png │ └── unnamed-chunk-9-1.png ├── presentations └── Blei2009.pdf ├── scripts └── Example_topic_model_analysis.R ├── stopword_lists ├── Jockers_stoplist-exp.csv ├── Jockers_stoplist.csv ├── mallet_stoplists │ ├── README │ ├── de.txt │ ├── en.txt │ ├── fi.txt │ ├── fr.txt │ └── jp.txt ├── python_stoplists │ ├── arabic.txt │ ├── catalan.txt │ ├── danish.txt │ ├── dutch.txt │ ├── english.txt │ ├── finnish.txt │ ├── french.txt │ ├── german.txt │ ├── hungarian.txt │ ├── italian.txt │ ├── languages.json │ ├── norwegian.txt │ ├── portuguese.txt │ ├── romanian.txt │ ├── russian.txt │ ├── spanish.txt │ ├── swedish.txt │ ├── turkish.txt │ └── ukrainian.txt └── tm_stoplists │ ├── SMART.txt │ ├── catalan.txt │ ├── danish.txt │ ├── dutch.txt │ ├── english.txt │ ├── finnish.txt │ ├── french.txt │ ├── german.txt │ ├── hungarian.txt │ ├── italian.txt │ ├── norwegian.txt │ ├── portuguese.txt │ ├── romanian.txt │ ├── russian.txt │ ├── spanish.txt │ └── swedish.txt └── topicmodels_learning.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/.gitignore -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/README.md -------------------------------------------------------------------------------- /articles/Blei2003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Blei2003.pdf -------------------------------------------------------------------------------- /articles/Blei2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Blei2007.pdf -------------------------------------------------------------------------------- /articles/Blei2008.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Blei2008.pdf -------------------------------------------------------------------------------- /articles/Blei2009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Blei2009.pdf -------------------------------------------------------------------------------- /articles/Blei2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Blei2012.pdf -------------------------------------------------------------------------------- /articles/Chang2009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Chang2009.pdf -------------------------------------------------------------------------------- /articles/Griffiths2004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Griffiths2004.pdf -------------------------------------------------------------------------------- /articles/Griffiths2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Griffiths2007.pdf -------------------------------------------------------------------------------- /articles/Gruen2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Gruen2011.pdf -------------------------------------------------------------------------------- /articles/Mimno2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Mimno2007.pdf -------------------------------------------------------------------------------- /articles/Mimno2013.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Mimno2013.Rmd -------------------------------------------------------------------------------- /articles/Newman2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Newman2006.pdf -------------------------------------------------------------------------------- /articles/Papadimitriou1997.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Papadimitriou1997.pdf -------------------------------------------------------------------------------- /articles/Ponweiser2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Ponweiser2012.pdf -------------------------------------------------------------------------------- /articles/Roberts2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Roberts2013.pdf -------------------------------------------------------------------------------- /articles/Roberts2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Roberts2014.pdf -------------------------------------------------------------------------------- /articles/Robertsnd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Robertsnd.pdf -------------------------------------------------------------------------------- /articles/Sievert2014a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Sievert2014a.pdf -------------------------------------------------------------------------------- /articles/Sievert2014b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Sievert2014b.pdf -------------------------------------------------------------------------------- /articles/Srivastava2009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Srivastava2009.pdf -------------------------------------------------------------------------------- /articles/Steyvers2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Steyvers2007.pdf -------------------------------------------------------------------------------- /articles/Taddy2012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Taddy2012.pdf -------------------------------------------------------------------------------- /articles/Tang2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/articles/Tang2014.pdf -------------------------------------------------------------------------------- /data/Jockers_data/plainText/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/plainText/austen.txt -------------------------------------------------------------------------------- /data/Jockers_data/plainText/melville.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/plainText/melville.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton10.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton10.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton11.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton11.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton12.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton12.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton13.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton13.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton14.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton14.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton3.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton3.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton4.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton4.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton5.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton5.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton6.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton6.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton7.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton7.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton8.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton8.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Carleton9.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Carleton9.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Edgeworth1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Edgeworth1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu3.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu3.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu4.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu4.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu5.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu5.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu6.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu6.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/LeFanu7.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/LeFanu7.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Lewis.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Lewis.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Norris1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Norris1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Norris2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Norris2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Norris3.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Norris3.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Norris4.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Norris4.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Polidori1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Polidori1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Quigley1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Quigley1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/Quigley2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/Quigley2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/anonymous.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/anonymous.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/donovan1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/donovan1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/donovan2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/donovan2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/driscoll1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/driscoll1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/driscoll2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/driscoll2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/driscoll3.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/driscoll3.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/jessop1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/jessop1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/jessop2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/jessop2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/jessop3.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/jessop3.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/kyne1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/kyne1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/kyne2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/kyne2.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/mcHenry1.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/mcHenry1.xml.txt -------------------------------------------------------------------------------- /data/Jockers_data/taggedCorpus/mcHenry2.xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/Jockers_data/taggedCorpus/mcHenry2.xml.txt -------------------------------------------------------------------------------- /data/LDAvis_reviews.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/LDAvis_reviews.txt -------------------------------------------------------------------------------- /data/mallet_texts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/README -------------------------------------------------------------------------------- /data/mallet_texts/numeric/boxes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/numeric/boxes.txt -------------------------------------------------------------------------------- /data/mallet_texts/numeric/puffins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/numeric/puffins.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/apollo8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/apollo8.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/fiv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/fiv.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/habichtsadler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/habichtsadler.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/hoechst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/hoechst.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/indogermanische.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/indogermanische.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/konrad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/konrad.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/marcellinus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/marcellinus.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/rostock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/rostock.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/sadat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/sadat.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/t40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/t40.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/ulrich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/ulrich.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/de/wildenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/de/wildenstein.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/elizabeth_needham.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/elizabeth_needham.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/equipartition_theorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/equipartition_theorem.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/gunnhild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/gunnhild.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/hawes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/hawes.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/hill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/hill.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/shiloh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/shiloh.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/sunderland_echo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/sunderland_echo.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/thespis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/thespis.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/thylacine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/thylacine.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/uranus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/uranus.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/yard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/yard.txt -------------------------------------------------------------------------------- /data/mallet_texts/web/en/zinta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/mallet_texts/web/en/zinta.txt -------------------------------------------------------------------------------- /data/recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/recipes/README.md -------------------------------------------------------------------------------- /data/recipes/allr_recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/recipes/allr_recipes.txt -------------------------------------------------------------------------------- /data/recipes/epic_recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/recipes/epic_recipes.txt -------------------------------------------------------------------------------- /data/recipes/map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/recipes/map.txt -------------------------------------------------------------------------------- /data/recipes/menu_recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/recipes/menu_recipes.txt -------------------------------------------------------------------------------- /data/stm_gadarian.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/data/stm_gadarian.csv -------------------------------------------------------------------------------- /functions/optimal_k.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/functions/optimal_k.R -------------------------------------------------------------------------------- /functions/topicmodels2LDAvis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/functions/topicmodels2LDAvis.R -------------------------------------------------------------------------------- /inst/figure/topic-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/topic-model.jpg -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /inst/figure/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/inst/figure/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /presentations/Blei2009.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/presentations/Blei2009.pdf -------------------------------------------------------------------------------- /scripts/Example_topic_model_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/scripts/Example_topic_model_analysis.R -------------------------------------------------------------------------------- /stopword_lists/Jockers_stoplist-exp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/Jockers_stoplist-exp.csv -------------------------------------------------------------------------------- /stopword_lists/Jockers_stoplist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/Jockers_stoplist.csv -------------------------------------------------------------------------------- /stopword_lists/mallet_stoplists/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/mallet_stoplists/README -------------------------------------------------------------------------------- /stopword_lists/mallet_stoplists/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/mallet_stoplists/de.txt -------------------------------------------------------------------------------- /stopword_lists/mallet_stoplists/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/mallet_stoplists/en.txt -------------------------------------------------------------------------------- /stopword_lists/mallet_stoplists/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/mallet_stoplists/fi.txt -------------------------------------------------------------------------------- /stopword_lists/mallet_stoplists/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/mallet_stoplists/fr.txt -------------------------------------------------------------------------------- /stopword_lists/mallet_stoplists/jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/mallet_stoplists/jp.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/arabic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/arabic.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/catalan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/catalan.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/danish.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/dutch.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/english.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/finnish.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/french.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/german.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/hungarian.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/italian.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/languages.json -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/norwegian.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/portuguese.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/romanian.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/russian.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/spanish.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/swedish.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/turkish.txt -------------------------------------------------------------------------------- /stopword_lists/python_stoplists/ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/python_stoplists/ukrainian.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/SMART.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/SMART.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/catalan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/catalan.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/danish.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/dutch.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/english.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/finnish.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/french.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/german.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/hungarian.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/italian.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/norwegian.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/portuguese.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/romanian.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/russian.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/spanish.txt -------------------------------------------------------------------------------- /stopword_lists/tm_stoplists/swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/stopword_lists/tm_stoplists/swedish.txt -------------------------------------------------------------------------------- /topicmodels_learning.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/topicmodels_learning/HEAD/topicmodels_learning.Rproj --------------------------------------------------------------------------------