├── .DS_Store ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── CreateTextnet.R ├── InterpretText.R ├── PrepText.R ├── TextCentrality.R ├── TextCommunities.R ├── VisTextNet.R └── VisTextNetD3.R ├── README.html ├── README.md ├── data ├── sotu.rda ├── stop_words.rda └── test ├── development ├── PrepTextSent.R └── README ├── figures ├── SOTU_Plot.png ├── bothmodes.png ├── brumaire.png ├── moonlanding_headlines.png ├── sotu_firsts_backbone.png └── twomode.png └── man └── hello.Rd /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/.DS_Store -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/CreateTextnet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/CreateTextnet.R -------------------------------------------------------------------------------- /R/InterpretText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/InterpretText.R -------------------------------------------------------------------------------- /R/PrepText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/PrepText.R -------------------------------------------------------------------------------- /R/TextCentrality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/TextCentrality.R -------------------------------------------------------------------------------- /R/TextCommunities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/TextCommunities.R -------------------------------------------------------------------------------- /R/VisTextNet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/VisTextNet.R -------------------------------------------------------------------------------- /R/VisTextNetD3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/R/VisTextNetD3.R -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/README.md -------------------------------------------------------------------------------- /data/sotu.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/data/sotu.rda -------------------------------------------------------------------------------- /data/stop_words.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/data/stop_words.rda -------------------------------------------------------------------------------- /data/test: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /development/PrepTextSent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/development/PrepTextSent.R -------------------------------------------------------------------------------- /development/README: -------------------------------------------------------------------------------- 1 | THIS IS A DEVELOPMENT FOLDER DON'T USE 2 | -------------------------------------------------------------------------------- /figures/SOTU_Plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/figures/SOTU_Plot.png -------------------------------------------------------------------------------- /figures/bothmodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/figures/bothmodes.png -------------------------------------------------------------------------------- /figures/brumaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/figures/brumaire.png -------------------------------------------------------------------------------- /figures/moonlanding_headlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/figures/moonlanding_headlines.png -------------------------------------------------------------------------------- /figures/sotu_firsts_backbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/figures/sotu_firsts_backbone.png -------------------------------------------------------------------------------- /figures/twomode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/figures/twomode.png -------------------------------------------------------------------------------- /man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbail/textnets/HEAD/man/hello.Rd --------------------------------------------------------------------------------