├── .Rbuildignore ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── 00-authors.qmd ├── 00-preface.qmd ├── 01-intro.qmd ├── 02-r-basics.qmd ├── 03-r-workflow.qmd ├── 04-r-strings.qmd ├── 05-acquiring-files.qmd ├── 06-acquiring-packages.qmd ├── 07-acquiring-internet.qmd ├── 08-quanteda-overview.qmd ├── 09-quanteda-corpus.qmd ├── 10-quanteda-tokens.qmd ├── 11-quanteda-tokensadvanced.qmd ├── 12-quanteda-dfms.qmd ├── 13-quanteda-fcms.qmd ├── 14-exploring-description.qmd ├── 15-exploring-kwic.qmd ├── 16-exploring-dictionaries.qmd ├── 17-exploring-frequencies.qmd ├── 18-comparing-sophistication.qmd ├── 19-comparing-documents.qmd ├── 20-comparing-features.qmd ├── 21-ml-supervised-scaling.qmd ├── 22-ml-unsupervised-scaling.qmd ├── 23-ml-classifiers.qmd ├── 24-ml-topicmodels.qmd ├── 25-lms-linguistic-parsing.qmd ├── 26-lms-embeddings.qmd ├── 27-lms-transformers.qmd ├── 28-further-tidy.qmd ├── 29-further-hardlanguages.qmd ├── 30-appendix-installation.qmd ├── 31-appendix-encoding.qmd ├── 32-appendix-regex.qmd ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── README.md ├── TAUR.bib ├── _freeze ├── 00-preface │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 01-intro │ ├── execute-results │ │ ├── html.json │ │ └── tex.json │ ├── figure-html │ │ ├── keynesspres-1.png │ │ └── unnamed-chunk-14-1.png │ └── figure-pdf │ │ ├── keynesspres-1.pdf │ │ └── unnamed-chunk-14-1.pdf ├── 09-quanteda-corpus │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 10-quanteda-tokens │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 11-quanteda-tokensadvanced │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 12-quanteda-dfms │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 13-quanteda-dfms │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 29-appendix-installation │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── 30-appendix-installation │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── index │ └── execute-results │ │ ├── html.json │ │ └── tex.json ├── preface │ └── execute-results │ │ ├── html.json │ │ └── tex.json └── site_libs │ ├── clipboard │ └── clipboard.min.js │ ├── kePrint-0.0.1 │ └── kePrint.js │ └── lightable-0.0.1 │ └── lightable.css ├── _quarto.yml ├── contributing.md ├── images ├── TAURbook_cover.jpg ├── TAURbook_cover_large.png ├── TAURbook_cover_small.png ├── basics-help.pdf ├── caution.png ├── important.png ├── note.png ├── tip.png └── warning.png ├── index.qmd ├── latex └── preamble.tex ├── references.qmd └── welcome-html.qmd /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^CODE_OF_CONDUCT\.md$ 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/.gitignore -------------------------------------------------------------------------------- /00-authors.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/00-authors.qmd -------------------------------------------------------------------------------- /00-preface.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/00-preface.qmd -------------------------------------------------------------------------------- /01-intro.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/01-intro.qmd -------------------------------------------------------------------------------- /02-r-basics.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/02-r-basics.qmd -------------------------------------------------------------------------------- /03-r-workflow.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/03-r-workflow.qmd -------------------------------------------------------------------------------- /04-r-strings.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/04-r-strings.qmd -------------------------------------------------------------------------------- /05-acquiring-files.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/05-acquiring-files.qmd -------------------------------------------------------------------------------- /06-acquiring-packages.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/06-acquiring-packages.qmd -------------------------------------------------------------------------------- /07-acquiring-internet.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/07-acquiring-internet.qmd -------------------------------------------------------------------------------- /08-quanteda-overview.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/08-quanteda-overview.qmd -------------------------------------------------------------------------------- /09-quanteda-corpus.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/09-quanteda-corpus.qmd -------------------------------------------------------------------------------- /10-quanteda-tokens.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/10-quanteda-tokens.qmd -------------------------------------------------------------------------------- /11-quanteda-tokensadvanced.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/11-quanteda-tokensadvanced.qmd -------------------------------------------------------------------------------- /12-quanteda-dfms.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/12-quanteda-dfms.qmd -------------------------------------------------------------------------------- /13-quanteda-fcms.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/13-quanteda-fcms.qmd -------------------------------------------------------------------------------- /14-exploring-description.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/14-exploring-description.qmd -------------------------------------------------------------------------------- /15-exploring-kwic.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/15-exploring-kwic.qmd -------------------------------------------------------------------------------- /16-exploring-dictionaries.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/16-exploring-dictionaries.qmd -------------------------------------------------------------------------------- /17-exploring-frequencies.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/17-exploring-frequencies.qmd -------------------------------------------------------------------------------- /18-comparing-sophistication.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/18-comparing-sophistication.qmd -------------------------------------------------------------------------------- /19-comparing-documents.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/19-comparing-documents.qmd -------------------------------------------------------------------------------- /20-comparing-features.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/20-comparing-features.qmd -------------------------------------------------------------------------------- /21-ml-supervised-scaling.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/21-ml-supervised-scaling.qmd -------------------------------------------------------------------------------- /22-ml-unsupervised-scaling.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/22-ml-unsupervised-scaling.qmd -------------------------------------------------------------------------------- /23-ml-classifiers.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/23-ml-classifiers.qmd -------------------------------------------------------------------------------- /24-ml-topicmodels.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/24-ml-topicmodels.qmd -------------------------------------------------------------------------------- /25-lms-linguistic-parsing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/25-lms-linguistic-parsing.qmd -------------------------------------------------------------------------------- /26-lms-embeddings.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/26-lms-embeddings.qmd -------------------------------------------------------------------------------- /27-lms-transformers.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/27-lms-transformers.qmd -------------------------------------------------------------------------------- /28-further-tidy.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/28-further-tidy.qmd -------------------------------------------------------------------------------- /29-further-hardlanguages.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/29-further-hardlanguages.qmd -------------------------------------------------------------------------------- /30-appendix-installation.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/30-appendix-installation.qmd -------------------------------------------------------------------------------- /31-appendix-encoding.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/31-appendix-encoding.qmd -------------------------------------------------------------------------------- /32-appendix-regex.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/32-appendix-regex.qmd -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/README.md -------------------------------------------------------------------------------- /TAUR.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/TAUR.bib -------------------------------------------------------------------------------- /_freeze/00-preface/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/00-preface/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/00-preface/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/00-preface/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/01-intro/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/01-intro/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/01-intro/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/01-intro/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/01-intro/figure-html/keynesspres-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/01-intro/figure-html/keynesspres-1.png -------------------------------------------------------------------------------- /_freeze/01-intro/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/01-intro/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /_freeze/01-intro/figure-pdf/keynesspres-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/01-intro/figure-pdf/keynesspres-1.pdf -------------------------------------------------------------------------------- /_freeze/01-intro/figure-pdf/unnamed-chunk-14-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/01-intro/figure-pdf/unnamed-chunk-14-1.pdf -------------------------------------------------------------------------------- /_freeze/09-quanteda-corpus/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/09-quanteda-corpus/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/09-quanteda-corpus/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/09-quanteda-corpus/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/10-quanteda-tokens/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/10-quanteda-tokens/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/10-quanteda-tokens/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/10-quanteda-tokens/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/11-quanteda-tokensadvanced/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/11-quanteda-tokensadvanced/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/11-quanteda-tokensadvanced/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/11-quanteda-tokensadvanced/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/12-quanteda-dfms/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/12-quanteda-dfms/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/12-quanteda-dfms/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/12-quanteda-dfms/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/13-quanteda-dfms/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/13-quanteda-dfms/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/13-quanteda-dfms/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/13-quanteda-dfms/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/29-appendix-installation/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/29-appendix-installation/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/29-appendix-installation/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/29-appendix-installation/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/30-appendix-installation/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/30-appendix-installation/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/30-appendix-installation/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/30-appendix-installation/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/index/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/index/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/index/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/index/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/preface/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/preface/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/preface/execute-results/tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/preface/execute-results/tex.json -------------------------------------------------------------------------------- /_freeze/site_libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/site_libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /_freeze/site_libs/kePrint-0.0.1/kePrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/site_libs/kePrint-0.0.1/kePrint.js -------------------------------------------------------------------------------- /_freeze/site_libs/lightable-0.0.1/lightable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_freeze/site_libs/lightable-0.0.1/lightable.css -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/_quarto.yml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/contributing.md -------------------------------------------------------------------------------- /images/TAURbook_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/TAURbook_cover.jpg -------------------------------------------------------------------------------- /images/TAURbook_cover_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/TAURbook_cover_large.png -------------------------------------------------------------------------------- /images/TAURbook_cover_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/TAURbook_cover_small.png -------------------------------------------------------------------------------- /images/basics-help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/basics-help.pdf -------------------------------------------------------------------------------- /images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/caution.png -------------------------------------------------------------------------------- /images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/important.png -------------------------------------------------------------------------------- /images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/note.png -------------------------------------------------------------------------------- /images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/tip.png -------------------------------------------------------------------------------- /images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/images/warning.png -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/index.qmd -------------------------------------------------------------------------------- /latex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/latex/preamble.tex -------------------------------------------------------------------------------- /references.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/references.qmd -------------------------------------------------------------------------------- /welcome-html.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/Text-Analysis-Using-R/HEAD/welcome-html.qmd --------------------------------------------------------------------------------