├── .Rbuildignore ├── .github └── workflows │ └── R-CMD-check.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── matrix_reduction.R ├── pkg.R ├── textplot_bar.R ├── textplot_biterms.R ├── textplot_cooccurrence.R ├── textplot_corglasso.R ├── textplot_corlines.R ├── textplot_dependencies.R └── textplot_embedding_2d.R ├── README.md ├── data ├── example_btm.RData ├── example_embedding.RData ├── example_embedding_clusters.RData └── example_udpipe.RData ├── dev ├── make-textplot-examples.R ├── texplot-examples-1.png ├── texplot-examples-10.png ├── texplot-examples-11.png ├── texplot-examples-12.png ├── texplot-examples-2.png ├── texplot-examples-3.png ├── texplot-examples-4.png ├── texplot-examples-5.png ├── texplot-examples-6.png ├── texplot-examples-7.png ├── texplot-examples-8.png └── texplot-examples-9.png ├── man ├── example_btm.Rd ├── example_embedding.Rd ├── example_embedding_clusters.Rd ├── example_udpipe.Rd ├── plot.BTM.Rd ├── textplot_bar.Rd ├── textplot_bitermclusters.Rd ├── textplot_cooccurrence.Rd ├── textplot_correlation_glasso.Rd ├── textplot_correlation_lines.Rd ├── textplot_correlation_lines_attrs.Rd ├── textplot_dependencyparser.Rd └── textplot_embedding_2d.Rd ├── textplot.Rproj └── vignettes ├── textplot-examples.Rnw └── textplot-examples.gif /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/.github/workflows/R-CMD-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/matrix_reduction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/matrix_reduction.R -------------------------------------------------------------------------------- /R/pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/pkg.R -------------------------------------------------------------------------------- /R/textplot_bar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_bar.R -------------------------------------------------------------------------------- /R/textplot_biterms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_biterms.R -------------------------------------------------------------------------------- /R/textplot_cooccurrence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_cooccurrence.R -------------------------------------------------------------------------------- /R/textplot_corglasso.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_corglasso.R -------------------------------------------------------------------------------- /R/textplot_corlines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_corlines.R -------------------------------------------------------------------------------- /R/textplot_dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_dependencies.R -------------------------------------------------------------------------------- /R/textplot_embedding_2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/R/textplot_embedding_2d.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/README.md -------------------------------------------------------------------------------- /data/example_btm.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/data/example_btm.RData -------------------------------------------------------------------------------- /data/example_embedding.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/data/example_embedding.RData -------------------------------------------------------------------------------- /data/example_embedding_clusters.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/data/example_embedding_clusters.RData -------------------------------------------------------------------------------- /data/example_udpipe.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/data/example_udpipe.RData -------------------------------------------------------------------------------- /dev/make-textplot-examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/make-textplot-examples.R -------------------------------------------------------------------------------- /dev/texplot-examples-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-1.png -------------------------------------------------------------------------------- /dev/texplot-examples-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-10.png -------------------------------------------------------------------------------- /dev/texplot-examples-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-11.png -------------------------------------------------------------------------------- /dev/texplot-examples-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-12.png -------------------------------------------------------------------------------- /dev/texplot-examples-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-2.png -------------------------------------------------------------------------------- /dev/texplot-examples-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-3.png -------------------------------------------------------------------------------- /dev/texplot-examples-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-4.png -------------------------------------------------------------------------------- /dev/texplot-examples-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-5.png -------------------------------------------------------------------------------- /dev/texplot-examples-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-6.png -------------------------------------------------------------------------------- /dev/texplot-examples-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-7.png -------------------------------------------------------------------------------- /dev/texplot-examples-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-8.png -------------------------------------------------------------------------------- /dev/texplot-examples-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/dev/texplot-examples-9.png -------------------------------------------------------------------------------- /man/example_btm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/example_btm.Rd -------------------------------------------------------------------------------- /man/example_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/example_embedding.Rd -------------------------------------------------------------------------------- /man/example_embedding_clusters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/example_embedding_clusters.Rd -------------------------------------------------------------------------------- /man/example_udpipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/example_udpipe.Rd -------------------------------------------------------------------------------- /man/plot.BTM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/plot.BTM.Rd -------------------------------------------------------------------------------- /man/textplot_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_bar.Rd -------------------------------------------------------------------------------- /man/textplot_bitermclusters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_bitermclusters.Rd -------------------------------------------------------------------------------- /man/textplot_cooccurrence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_cooccurrence.Rd -------------------------------------------------------------------------------- /man/textplot_correlation_glasso.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_correlation_glasso.Rd -------------------------------------------------------------------------------- /man/textplot_correlation_lines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_correlation_lines.Rd -------------------------------------------------------------------------------- /man/textplot_correlation_lines_attrs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_correlation_lines_attrs.Rd -------------------------------------------------------------------------------- /man/textplot_dependencyparser.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_dependencyparser.Rd -------------------------------------------------------------------------------- /man/textplot_embedding_2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/man/textplot_embedding_2d.Rd -------------------------------------------------------------------------------- /textplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/textplot.Rproj -------------------------------------------------------------------------------- /vignettes/textplot-examples.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/vignettes/textplot-examples.Rnw -------------------------------------------------------------------------------- /vignettes/textplot-examples.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnosac/textplot/HEAD/vignettes/textplot-examples.gif --------------------------------------------------------------------------------