├── .Rbuildignore ├── .Rinstignore ├── .gitignore ├── ChangeLog ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── 00_environment.R ├── 01_class_01_kRp.text.R ├── 01_class_02_kRp.TTR.R ├── 01_class_03_kRp.corp.freq.R ├── 01_class_04_kRp.lang.R ├── 01_class_05_kRp.readability.R ├── 01_class_81_kRp.connection_union.R ├── 01_class_90_deprecated_classes.R ├── 02_method_cTest.R ├── 02_method_clozeDelete.R ├── 02_method_correct.R ├── 02_method_docTermMatrix.R ├── 02_method_filterByClass.R ├── 02_method_freq.analysis.R ├── 02_method_get_set_kRp.text.R ├── 02_method_hyphen.R ├── 02_method_jumbleWords.R ├── 02_method_lex.div.R ├── 02_method_pasteText.R ├── 02_method_plot.kRp.text.R ├── 02_method_query.R ├── 02_method_read.corp.custom.R ├── 02_method_readTagged.R ├── 02_method_readability.R ├── 02_method_show.kRp.TTR.R ├── 02_method_show.kRp.corp.freq.R ├── 02_method_show.kRp.lang.R ├── 02_method_show.kRp.readability.R ├── 02_method_show.kRp.text.R ├── 02_method_split_by_doc_id.R ├── 02_method_summary.kRp.TTR.R ├── 02_method_summary.kRp.lang.R ├── 02_method_summary.kRp.readability.R ├── 02_method_summary.kRp.text.R ├── 02_method_textTransform.R ├── 02_method_tokenize.R ├── 02_method_treetag.R ├── 02_method_types_tokens.R ├── available.koRpus.lang.R ├── get.kRp.env.R ├── guess.lang.R ├── install.koRpus.lang.R ├── kRp.POS.tags.R ├── kRp.cluster.R ├── koRpus-internal.R ├── koRpus-internal.freq.analysis.R ├── koRpus-internal.import.R ├── koRpus-internal.lexdiv.formulae.R ├── koRpus-internal.rdb.formulae.R ├── koRpus-internal.rdb.params.grades.R ├── koRpus-internal.read.corp.custom.R ├── koRpus-package.R ├── lex.div.num.R ├── read.BAWL.R ├── read.corp.LCC.R ├── read.corp.celex.R ├── readability.num.R ├── segment.optimizer.R ├── set.kRp.env.R ├── set.lang.support.R ├── textFeatures.R ├── wrapper_functions_lex.div.R └── wrapper_functions_readability.R ├── README.md ├── TODO ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── inst ├── CITATION ├── NEWS.Rd ├── README.languages ├── doc │ ├── koRpus_lit.bib │ ├── koRpus_vignette.Rmd │ └── koRpus_vignette.html ├── examples │ ├── License_of_sample_corpus.txt │ ├── corpus │ │ └── Reality_Winner.txt │ ├── define_sample_file.R │ ├── if_lang_en_clause_end.R │ └── if_lang_en_clause_start.R ├── rkward │ ├── koRpus.pluginmap │ ├── plugins │ │ ├── FrequencyAnalysis.js │ │ ├── FrequencyAnalysis.xml │ │ ├── Hyphenation.js │ │ ├── Hyphenation.xml │ │ ├── LexicalDiversity.js │ │ ├── LexicalDiversity.xml │ │ ├── Readability.js │ │ ├── Readability.xml │ │ ├── TokenizingPOStagging.js │ │ └── TokenizingPOStagging.xml │ ├── po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── rkward__TokenizingPOStagging_rkward.mo │ │ ├── rkward__TokenizingPOStagging_rkward.de.po │ │ └── rkward__TokenizingPOStagging_rkward.pot │ └── rkwarddev_koRpus_plugin_script.R ├── shiny │ └── demo │ │ ├── maxlength.html │ │ ├── server.R │ │ └── ui.R └── templates │ ├── lang.support-xx.R │ └── package_koRpus.lang.xx.R ├── man ├── ARI.Rd ├── C.ld.Rd ├── CTTR.Rd ├── DRP.Rd ├── ELF.Rd ├── FOG.Rd ├── FORCAST.Rd ├── HDD.Rd ├── K.ld.Rd ├── LIX.Rd ├── MATTR.Rd ├── MSTTR.Rd ├── MTLD.Rd ├── R.ld.Rd ├── RIX.Rd ├── S.ld.Rd ├── SMOG.Rd ├── TRI.Rd ├── TTR.Rd ├── U.ld.Rd ├── available.koRpus.lang.Rd ├── bormuth.Rd ├── cTest-methods.Rd ├── clozeDelete-methods.Rd ├── coleman.Rd ├── coleman.liau.Rd ├── correct-methods.Rd ├── dale.chall.Rd ├── danielson.bryan.Rd ├── dickes.steiwer.Rd ├── docTermMatrix.Rd ├── farr.jenkins.paterson.Rd ├── filterByClass-methods.Rd ├── flesch.Rd ├── flesch.kincaid.Rd ├── freq.analysis-methods.Rd ├── fucks.Rd ├── get.kRp.env.Rd ├── guess.lang.Rd ├── gutierrez.Rd ├── harris.jacobson.Rd ├── hyphen-methods.Rd ├── install.koRpus.lang.Rd ├── jumbleWords-methods.Rd ├── kRp.POS.tags.Rd ├── kRp.TTR-class.Rd ├── kRp.cluster.Rd ├── kRp.corp.freq-class.Rd ├── kRp.lang-class.Rd ├── kRp.readability-class.Rd ├── kRp.text-class.Rd ├── kRp.text_get-methods.Rd ├── koRpus-deprecated.Rd ├── koRpus-package.Rd ├── lex.div-methods.Rd ├── lex.div.num.Rd ├── linsear.write.Rd ├── maas.Rd ├── nWS.Rd ├── pasteText-methods.Rd ├── plot-methods.Rd ├── query-methods.Rd ├── read.BAWL.Rd ├── read.corp.LCC.Rd ├── read.corp.celex.Rd ├── read.corp.custom-methods.Rd ├── readTagged-methods.Rd ├── readability-methods.Rd ├── readability.num.Rd ├── segment.optimizer.Rd ├── set.kRp.env.Rd ├── set.lang.support.Rd ├── show-methods.Rd ├── spache.Rd ├── split_by_doc_id.Rd ├── strain.Rd ├── summary-methods.Rd ├── textFeatures.Rd ├── textTransform-methods.Rd ├── tokenize-methods.Rd ├── traenkle.bailer.Rd ├── treetag-methods.Rd ├── tuldava.Rd ├── types.tokens-methods.Rd └── wheeler.smith.Rd ├── tests ├── testthat.R └── testthat │ ├── README_sample_text.txt │ ├── hyph_xy_dput.txt │ ├── pseudo_word_list.txt │ ├── sample_text.txt │ ├── sample_text_RDRPOSTagged_df_dput.txt │ ├── sample_text_RDRPOSTagged_kRp_dput.txt │ ├── sample_text_TTRChar_dput.txt │ ├── sample_text_correcthyph_dput.txt │ ├── sample_text_hyphen_dput.txt │ ├── sample_text_lexdiv_dput.txt │ ├── sample_text_readability_dput.txt │ ├── sample_text_tokenized_dput.txt │ ├── sample_text_tokenized_dput_old.txt │ ├── sample_text_tokenized_no_desc_dput.txt │ ├── sample_text_treetagged.txt │ ├── sample_text_treetagged_dput.txt │ ├── test_tokenizing_POS_tagging.R │ └── tokenized_single_token_dput.txt └── vignettes ├── apa.csl ├── koRpus_lit.bib ├── koRpus_vignette.Rmd ├── sample_text.txt ├── sample_text_hyphenated_dput.txt └── sample_text_treetagged_dput.txt /.Rbuildignore: -------------------------------------------------------------------------------- 1 | .git 2 | 3 | -------------------------------------------------------------------------------- /.Rinstignore: -------------------------------------------------------------------------------- 1 | inst/doc/koRpus_lit.bib 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/00_environment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/00_environment.R -------------------------------------------------------------------------------- /R/01_class_01_kRp.text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_01_kRp.text.R -------------------------------------------------------------------------------- /R/01_class_02_kRp.TTR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_02_kRp.TTR.R -------------------------------------------------------------------------------- /R/01_class_03_kRp.corp.freq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_03_kRp.corp.freq.R -------------------------------------------------------------------------------- /R/01_class_04_kRp.lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_04_kRp.lang.R -------------------------------------------------------------------------------- /R/01_class_05_kRp.readability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_05_kRp.readability.R -------------------------------------------------------------------------------- /R/01_class_81_kRp.connection_union.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_81_kRp.connection_union.R -------------------------------------------------------------------------------- /R/01_class_90_deprecated_classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/01_class_90_deprecated_classes.R -------------------------------------------------------------------------------- /R/02_method_cTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_cTest.R -------------------------------------------------------------------------------- /R/02_method_clozeDelete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_clozeDelete.R -------------------------------------------------------------------------------- /R/02_method_correct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_correct.R -------------------------------------------------------------------------------- /R/02_method_docTermMatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_docTermMatrix.R -------------------------------------------------------------------------------- /R/02_method_filterByClass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_filterByClass.R -------------------------------------------------------------------------------- /R/02_method_freq.analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_freq.analysis.R -------------------------------------------------------------------------------- /R/02_method_get_set_kRp.text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_get_set_kRp.text.R -------------------------------------------------------------------------------- /R/02_method_hyphen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_hyphen.R -------------------------------------------------------------------------------- /R/02_method_jumbleWords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_jumbleWords.R -------------------------------------------------------------------------------- /R/02_method_lex.div.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_lex.div.R -------------------------------------------------------------------------------- /R/02_method_pasteText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_pasteText.R -------------------------------------------------------------------------------- /R/02_method_plot.kRp.text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_plot.kRp.text.R -------------------------------------------------------------------------------- /R/02_method_query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_query.R -------------------------------------------------------------------------------- /R/02_method_read.corp.custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_read.corp.custom.R -------------------------------------------------------------------------------- /R/02_method_readTagged.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_readTagged.R -------------------------------------------------------------------------------- /R/02_method_readability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_readability.R -------------------------------------------------------------------------------- /R/02_method_show.kRp.TTR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_show.kRp.TTR.R -------------------------------------------------------------------------------- /R/02_method_show.kRp.corp.freq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_show.kRp.corp.freq.R -------------------------------------------------------------------------------- /R/02_method_show.kRp.lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_show.kRp.lang.R -------------------------------------------------------------------------------- /R/02_method_show.kRp.readability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_show.kRp.readability.R -------------------------------------------------------------------------------- /R/02_method_show.kRp.text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_show.kRp.text.R -------------------------------------------------------------------------------- /R/02_method_split_by_doc_id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_split_by_doc_id.R -------------------------------------------------------------------------------- /R/02_method_summary.kRp.TTR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_summary.kRp.TTR.R -------------------------------------------------------------------------------- /R/02_method_summary.kRp.lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_summary.kRp.lang.R -------------------------------------------------------------------------------- /R/02_method_summary.kRp.readability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_summary.kRp.readability.R -------------------------------------------------------------------------------- /R/02_method_summary.kRp.text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_summary.kRp.text.R -------------------------------------------------------------------------------- /R/02_method_textTransform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_textTransform.R -------------------------------------------------------------------------------- /R/02_method_tokenize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_tokenize.R -------------------------------------------------------------------------------- /R/02_method_treetag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_treetag.R -------------------------------------------------------------------------------- /R/02_method_types_tokens.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/02_method_types_tokens.R -------------------------------------------------------------------------------- /R/available.koRpus.lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/available.koRpus.lang.R -------------------------------------------------------------------------------- /R/get.kRp.env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/get.kRp.env.R -------------------------------------------------------------------------------- /R/guess.lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/guess.lang.R -------------------------------------------------------------------------------- /R/install.koRpus.lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/install.koRpus.lang.R -------------------------------------------------------------------------------- /R/kRp.POS.tags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/kRp.POS.tags.R -------------------------------------------------------------------------------- /R/kRp.cluster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/kRp.cluster.R -------------------------------------------------------------------------------- /R/koRpus-internal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.R -------------------------------------------------------------------------------- /R/koRpus-internal.freq.analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.freq.analysis.R -------------------------------------------------------------------------------- /R/koRpus-internal.import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.import.R -------------------------------------------------------------------------------- /R/koRpus-internal.lexdiv.formulae.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.lexdiv.formulae.R -------------------------------------------------------------------------------- /R/koRpus-internal.rdb.formulae.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.rdb.formulae.R -------------------------------------------------------------------------------- /R/koRpus-internal.rdb.params.grades.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.rdb.params.grades.R -------------------------------------------------------------------------------- /R/koRpus-internal.read.corp.custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-internal.read.corp.custom.R -------------------------------------------------------------------------------- /R/koRpus-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/koRpus-package.R -------------------------------------------------------------------------------- /R/lex.div.num.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/lex.div.num.R -------------------------------------------------------------------------------- /R/read.BAWL.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/read.BAWL.R -------------------------------------------------------------------------------- /R/read.corp.LCC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/read.corp.LCC.R -------------------------------------------------------------------------------- /R/read.corp.celex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/read.corp.celex.R -------------------------------------------------------------------------------- /R/readability.num.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/readability.num.R -------------------------------------------------------------------------------- /R/segment.optimizer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/segment.optimizer.R -------------------------------------------------------------------------------- /R/set.kRp.env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/set.kRp.env.R -------------------------------------------------------------------------------- /R/set.lang.support.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/set.lang.support.R -------------------------------------------------------------------------------- /R/textFeatures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/textFeatures.R -------------------------------------------------------------------------------- /R/wrapper_functions_lex.div.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/wrapper_functions_lex.div.R -------------------------------------------------------------------------------- /R/wrapper_functions_readability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/R/wrapper_functions_readability.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/TODO -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/NEWS.Rd -------------------------------------------------------------------------------- /inst/README.languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/README.languages -------------------------------------------------------------------------------- /inst/doc/koRpus_lit.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/doc/koRpus_lit.bib -------------------------------------------------------------------------------- /inst/doc/koRpus_vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/doc/koRpus_vignette.Rmd -------------------------------------------------------------------------------- /inst/doc/koRpus_vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/doc/koRpus_vignette.html -------------------------------------------------------------------------------- /inst/examples/License_of_sample_corpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/examples/License_of_sample_corpus.txt -------------------------------------------------------------------------------- /inst/examples/corpus/Reality_Winner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/examples/corpus/Reality_Winner.txt -------------------------------------------------------------------------------- /inst/examples/define_sample_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/examples/define_sample_file.R -------------------------------------------------------------------------------- /inst/examples/if_lang_en_clause_end.R: -------------------------------------------------------------------------------- 1 | } else {} 2 | -------------------------------------------------------------------------------- /inst/examples/if_lang_en_clause_start.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/examples/if_lang_en_clause_start.R -------------------------------------------------------------------------------- /inst/rkward/koRpus.pluginmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/koRpus.pluginmap -------------------------------------------------------------------------------- /inst/rkward/plugins/FrequencyAnalysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/FrequencyAnalysis.js -------------------------------------------------------------------------------- /inst/rkward/plugins/FrequencyAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/FrequencyAnalysis.xml -------------------------------------------------------------------------------- /inst/rkward/plugins/Hyphenation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/Hyphenation.js -------------------------------------------------------------------------------- /inst/rkward/plugins/Hyphenation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/Hyphenation.xml -------------------------------------------------------------------------------- /inst/rkward/plugins/LexicalDiversity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/LexicalDiversity.js -------------------------------------------------------------------------------- /inst/rkward/plugins/LexicalDiversity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/LexicalDiversity.xml -------------------------------------------------------------------------------- /inst/rkward/plugins/Readability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/Readability.js -------------------------------------------------------------------------------- /inst/rkward/plugins/Readability.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/Readability.xml -------------------------------------------------------------------------------- /inst/rkward/plugins/TokenizingPOStagging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/TokenizingPOStagging.js -------------------------------------------------------------------------------- /inst/rkward/plugins/TokenizingPOStagging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/plugins/TokenizingPOStagging.xml -------------------------------------------------------------------------------- /inst/rkward/po/de/LC_MESSAGES/rkward__TokenizingPOStagging_rkward.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/po/de/LC_MESSAGES/rkward__TokenizingPOStagging_rkward.mo -------------------------------------------------------------------------------- /inst/rkward/po/rkward__TokenizingPOStagging_rkward.de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/po/rkward__TokenizingPOStagging_rkward.de.po -------------------------------------------------------------------------------- /inst/rkward/po/rkward__TokenizingPOStagging_rkward.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/po/rkward__TokenizingPOStagging_rkward.pot -------------------------------------------------------------------------------- /inst/rkward/rkwarddev_koRpus_plugin_script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/rkward/rkwarddev_koRpus_plugin_script.R -------------------------------------------------------------------------------- /inst/shiny/demo/maxlength.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/shiny/demo/maxlength.html -------------------------------------------------------------------------------- /inst/shiny/demo/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/shiny/demo/server.R -------------------------------------------------------------------------------- /inst/shiny/demo/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/shiny/demo/ui.R -------------------------------------------------------------------------------- /inst/templates/lang.support-xx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/templates/lang.support-xx.R -------------------------------------------------------------------------------- /inst/templates/package_koRpus.lang.xx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/inst/templates/package_koRpus.lang.xx.R -------------------------------------------------------------------------------- /man/ARI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/ARI.Rd -------------------------------------------------------------------------------- /man/C.ld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/C.ld.Rd -------------------------------------------------------------------------------- /man/CTTR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/CTTR.Rd -------------------------------------------------------------------------------- /man/DRP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/DRP.Rd -------------------------------------------------------------------------------- /man/ELF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/ELF.Rd -------------------------------------------------------------------------------- /man/FOG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/FOG.Rd -------------------------------------------------------------------------------- /man/FORCAST.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/FORCAST.Rd -------------------------------------------------------------------------------- /man/HDD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/HDD.Rd -------------------------------------------------------------------------------- /man/K.ld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/K.ld.Rd -------------------------------------------------------------------------------- /man/LIX.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/LIX.Rd -------------------------------------------------------------------------------- /man/MATTR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/MATTR.Rd -------------------------------------------------------------------------------- /man/MSTTR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/MSTTR.Rd -------------------------------------------------------------------------------- /man/MTLD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/MTLD.Rd -------------------------------------------------------------------------------- /man/R.ld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/R.ld.Rd -------------------------------------------------------------------------------- /man/RIX.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/RIX.Rd -------------------------------------------------------------------------------- /man/S.ld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/S.ld.Rd -------------------------------------------------------------------------------- /man/SMOG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/SMOG.Rd -------------------------------------------------------------------------------- /man/TRI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/TRI.Rd -------------------------------------------------------------------------------- /man/TTR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/TTR.Rd -------------------------------------------------------------------------------- /man/U.ld.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/U.ld.Rd -------------------------------------------------------------------------------- /man/available.koRpus.lang.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/available.koRpus.lang.Rd -------------------------------------------------------------------------------- /man/bormuth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/bormuth.Rd -------------------------------------------------------------------------------- /man/cTest-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/cTest-methods.Rd -------------------------------------------------------------------------------- /man/clozeDelete-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/clozeDelete-methods.Rd -------------------------------------------------------------------------------- /man/coleman.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/coleman.Rd -------------------------------------------------------------------------------- /man/coleman.liau.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/coleman.liau.Rd -------------------------------------------------------------------------------- /man/correct-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/correct-methods.Rd -------------------------------------------------------------------------------- /man/dale.chall.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/dale.chall.Rd -------------------------------------------------------------------------------- /man/danielson.bryan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/danielson.bryan.Rd -------------------------------------------------------------------------------- /man/dickes.steiwer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/dickes.steiwer.Rd -------------------------------------------------------------------------------- /man/docTermMatrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/docTermMatrix.Rd -------------------------------------------------------------------------------- /man/farr.jenkins.paterson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/farr.jenkins.paterson.Rd -------------------------------------------------------------------------------- /man/filterByClass-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/filterByClass-methods.Rd -------------------------------------------------------------------------------- /man/flesch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/flesch.Rd -------------------------------------------------------------------------------- /man/flesch.kincaid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/flesch.kincaid.Rd -------------------------------------------------------------------------------- /man/freq.analysis-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/freq.analysis-methods.Rd -------------------------------------------------------------------------------- /man/fucks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/fucks.Rd -------------------------------------------------------------------------------- /man/get.kRp.env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/get.kRp.env.Rd -------------------------------------------------------------------------------- /man/guess.lang.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/guess.lang.Rd -------------------------------------------------------------------------------- /man/gutierrez.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/gutierrez.Rd -------------------------------------------------------------------------------- /man/harris.jacobson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/harris.jacobson.Rd -------------------------------------------------------------------------------- /man/hyphen-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/hyphen-methods.Rd -------------------------------------------------------------------------------- /man/install.koRpus.lang.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/install.koRpus.lang.Rd -------------------------------------------------------------------------------- /man/jumbleWords-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/jumbleWords-methods.Rd -------------------------------------------------------------------------------- /man/kRp.POS.tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.POS.tags.Rd -------------------------------------------------------------------------------- /man/kRp.TTR-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.TTR-class.Rd -------------------------------------------------------------------------------- /man/kRp.cluster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.cluster.Rd -------------------------------------------------------------------------------- /man/kRp.corp.freq-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.corp.freq-class.Rd -------------------------------------------------------------------------------- /man/kRp.lang-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.lang-class.Rd -------------------------------------------------------------------------------- /man/kRp.readability-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.readability-class.Rd -------------------------------------------------------------------------------- /man/kRp.text-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.text-class.Rd -------------------------------------------------------------------------------- /man/kRp.text_get-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/kRp.text_get-methods.Rd -------------------------------------------------------------------------------- /man/koRpus-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/koRpus-deprecated.Rd -------------------------------------------------------------------------------- /man/koRpus-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/koRpus-package.Rd -------------------------------------------------------------------------------- /man/lex.div-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/lex.div-methods.Rd -------------------------------------------------------------------------------- /man/lex.div.num.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/lex.div.num.Rd -------------------------------------------------------------------------------- /man/linsear.write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/linsear.write.Rd -------------------------------------------------------------------------------- /man/maas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/maas.Rd -------------------------------------------------------------------------------- /man/nWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/nWS.Rd -------------------------------------------------------------------------------- /man/pasteText-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/pasteText-methods.Rd -------------------------------------------------------------------------------- /man/plot-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/plot-methods.Rd -------------------------------------------------------------------------------- /man/query-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/query-methods.Rd -------------------------------------------------------------------------------- /man/read.BAWL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/read.BAWL.Rd -------------------------------------------------------------------------------- /man/read.corp.LCC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/read.corp.LCC.Rd -------------------------------------------------------------------------------- /man/read.corp.celex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/read.corp.celex.Rd -------------------------------------------------------------------------------- /man/read.corp.custom-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/read.corp.custom-methods.Rd -------------------------------------------------------------------------------- /man/readTagged-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/readTagged-methods.Rd -------------------------------------------------------------------------------- /man/readability-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/readability-methods.Rd -------------------------------------------------------------------------------- /man/readability.num.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/readability.num.Rd -------------------------------------------------------------------------------- /man/segment.optimizer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/segment.optimizer.Rd -------------------------------------------------------------------------------- /man/set.kRp.env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/set.kRp.env.Rd -------------------------------------------------------------------------------- /man/set.lang.support.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/set.lang.support.Rd -------------------------------------------------------------------------------- /man/show-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/show-methods.Rd -------------------------------------------------------------------------------- /man/spache.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/spache.Rd -------------------------------------------------------------------------------- /man/split_by_doc_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/split_by_doc_id.Rd -------------------------------------------------------------------------------- /man/strain.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/strain.Rd -------------------------------------------------------------------------------- /man/summary-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/summary-methods.Rd -------------------------------------------------------------------------------- /man/textFeatures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/textFeatures.Rd -------------------------------------------------------------------------------- /man/textTransform-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/textTransform-methods.Rd -------------------------------------------------------------------------------- /man/tokenize-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/tokenize-methods.Rd -------------------------------------------------------------------------------- /man/traenkle.bailer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/traenkle.bailer.Rd -------------------------------------------------------------------------------- /man/treetag-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/treetag-methods.Rd -------------------------------------------------------------------------------- /man/tuldava.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/tuldava.Rd -------------------------------------------------------------------------------- /man/types.tokens-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/types.tokens-methods.Rd -------------------------------------------------------------------------------- /man/wheeler.smith.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/man/wheeler.smith.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/README_sample_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/README_sample_text.txt -------------------------------------------------------------------------------- /tests/testthat/hyph_xy_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/hyph_xy_dput.txt -------------------------------------------------------------------------------- /tests/testthat/pseudo_word_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/pseudo_word_list.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_RDRPOSTagged_df_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_RDRPOSTagged_df_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_RDRPOSTagged_kRp_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_RDRPOSTagged_kRp_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_TTRChar_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_TTRChar_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_correcthyph_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_correcthyph_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_hyphen_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_hyphen_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_lexdiv_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_lexdiv_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_readability_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_readability_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_tokenized_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_tokenized_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_tokenized_dput_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_tokenized_dput_old.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_tokenized_no_desc_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_tokenized_no_desc_dput.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_treetagged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_treetagged.txt -------------------------------------------------------------------------------- /tests/testthat/sample_text_treetagged_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/sample_text_treetagged_dput.txt -------------------------------------------------------------------------------- /tests/testthat/test_tokenizing_POS_tagging.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/test_tokenizing_POS_tagging.R -------------------------------------------------------------------------------- /tests/testthat/tokenized_single_token_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/tests/testthat/tokenized_single_token_dput.txt -------------------------------------------------------------------------------- /vignettes/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/vignettes/apa.csl -------------------------------------------------------------------------------- /vignettes/koRpus_lit.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/vignettes/koRpus_lit.bib -------------------------------------------------------------------------------- /vignettes/koRpus_vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/vignettes/koRpus_vignette.Rmd -------------------------------------------------------------------------------- /vignettes/sample_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/vignettes/sample_text.txt -------------------------------------------------------------------------------- /vignettes/sample_text_hyphenated_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/vignettes/sample_text_hyphenated_dput.txt -------------------------------------------------------------------------------- /vignettes/sample_text_treetagged_dput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unDocUMeantIt/koRpus/HEAD/vignettes/sample_text_treetagged_dput.txt --------------------------------------------------------------------------------