├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── avaible_syllable_funs.R ├── compute_syllable_counts.R ├── count_string.R ├── count_vector.R ├── count_vector_by.R ├── lookup_syllable_counts.R ├── readability_word_stats.R ├── readability_word_stats_by.R ├── sum_string.R ├── sum_vector.R ├── sum_vector_by.R ├── syllable-package.R ├── tally_both_string.R ├── tally_both_vector.R ├── tally_both_vector_by.R ├── tally_di_string.R ├── tally_di_vector.R ├── tally_di_vector_by.R ├── tally_mono_string.R ├── tally_mono_vector.R ├── tally_mono_vector_by.R ├── tally_poly_string.R ├── tally_poly_vector.R ├── tally_poly_vector_by.R ├── tally_short_string.R ├── tally_short_vector.R ├── tally_short_vector_by.R ├── textshape_reexports.R └── utils.R ├── README.Rmd ├── README.md ├── data ├── common_polysyllabic_proper_nouns.rda ├── hamlets_soliloquy.rda ├── presidential_debates_2012.rda └── syllable_counts_data.rda ├── inst ├── CITATION ├── build.R ├── extra_statdoc │ └── readme.R ├── staticdocs │ └── index.R └── syllable_dictionary_scraping │ ├── add_dictionary.R │ └── scrape_syllables.R ├── man ├── avaible_syllable_funs.Rd ├── common_polysyllabic_proper_nouns.Rd ├── compute_syllable_counts.Rd ├── count_string.Rd ├── count_vector.Rd ├── count_vector_by.Rd ├── hamlets_soliloquy.Rd ├── lookup_syllable_counts.Rd ├── presidential_debates_2012.Rd ├── print.available.Rd ├── readability_word_stats.Rd ├── readability_word_stats_by.Rd ├── sum_string.Rd ├── sum_vector.Rd ├── sum_vector_by.Rd ├── syllable.Rd ├── syllable_counts_data.Rd ├── tally_both_string.Rd ├── tally_both_vector.Rd ├── tally_both_vector_by.Rd ├── tally_di_string.Rd ├── tally_di_vector.Rd ├── tally_di_vector_by.Rd ├── tally_mono_string.Rd ├── tally_mono_vector.Rd ├── tally_mono_vector_by.Rd ├── tally_poly_string.Rd ├── tally_poly_vector.Rd ├── tally_poly_vector_by.Rd ├── tally_short_string.Rd ├── tally_short_vector.Rd └── tally_short_vector_by.Rd ├── tests ├── testthat.R └── testthat │ ├── test-avaible_syllable_funs.R │ ├── test-compute_syllable_counts.R │ ├── test-count_string.R │ ├── test-count_vector.R │ ├── test-count_vector_by.R │ ├── test-lookup_syllable_counts.R │ ├── test-readability_word_stats.R │ ├── test-readability_word_stats_by.R │ ├── test-sum_string.R │ ├── test-sum_vector.R │ ├── test-sum_vector_by.R │ ├── test-tally_both_string.R │ ├── test-tally_both_vector.R │ ├── test-tally_both_vector_by.R │ ├── test-tally_di_string.R │ ├── test-tally_di_vector.R │ ├── test-tally_di_vector_by.R │ ├── test-tally_mono_string.R │ ├── test-tally_mono_vector.R │ ├── test-tally_mono_vector_by.R │ ├── test-tally_poly_string.R │ ├── test-tally_poly_vector.R │ ├── test-tally_poly_vector_by.R │ ├── test-tally_short_string.R │ ├── test-tally_short_vector.R │ └── test-tally_short_vector_by.R └── tools ├── figure ├── Thumbs.db ├── unnamed-chunk-10-1.png └── unnamed-chunk-11-1.png └── syllable_logo ├── Thumbs.db ├── r_syllable.png ├── r_syllable.pptx ├── r_syllablea.png └── resize_icon.txt /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/avaible_syllable_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/avaible_syllable_funs.R -------------------------------------------------------------------------------- /R/compute_syllable_counts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/compute_syllable_counts.R -------------------------------------------------------------------------------- /R/count_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/count_string.R -------------------------------------------------------------------------------- /R/count_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/count_vector.R -------------------------------------------------------------------------------- /R/count_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/count_vector_by.R -------------------------------------------------------------------------------- /R/lookup_syllable_counts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/lookup_syllable_counts.R -------------------------------------------------------------------------------- /R/readability_word_stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/readability_word_stats.R -------------------------------------------------------------------------------- /R/readability_word_stats_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/readability_word_stats_by.R -------------------------------------------------------------------------------- /R/sum_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/sum_string.R -------------------------------------------------------------------------------- /R/sum_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/sum_vector.R -------------------------------------------------------------------------------- /R/sum_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/sum_vector_by.R -------------------------------------------------------------------------------- /R/syllable-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/syllable-package.R -------------------------------------------------------------------------------- /R/tally_both_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_both_string.R -------------------------------------------------------------------------------- /R/tally_both_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_both_vector.R -------------------------------------------------------------------------------- /R/tally_both_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_both_vector_by.R -------------------------------------------------------------------------------- /R/tally_di_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_di_string.R -------------------------------------------------------------------------------- /R/tally_di_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_di_vector.R -------------------------------------------------------------------------------- /R/tally_di_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_di_vector_by.R -------------------------------------------------------------------------------- /R/tally_mono_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_mono_string.R -------------------------------------------------------------------------------- /R/tally_mono_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_mono_vector.R -------------------------------------------------------------------------------- /R/tally_mono_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_mono_vector_by.R -------------------------------------------------------------------------------- /R/tally_poly_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_poly_string.R -------------------------------------------------------------------------------- /R/tally_poly_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_poly_vector.R -------------------------------------------------------------------------------- /R/tally_poly_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_poly_vector_by.R -------------------------------------------------------------------------------- /R/tally_short_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_short_string.R -------------------------------------------------------------------------------- /R/tally_short_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_short_vector.R -------------------------------------------------------------------------------- /R/tally_short_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/tally_short_vector_by.R -------------------------------------------------------------------------------- /R/textshape_reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/textshape_reexports.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/README.md -------------------------------------------------------------------------------- /data/common_polysyllabic_proper_nouns.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/data/common_polysyllabic_proper_nouns.rda -------------------------------------------------------------------------------- /data/hamlets_soliloquy.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/data/hamlets_soliloquy.rda -------------------------------------------------------------------------------- /data/presidential_debates_2012.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/data/presidential_debates_2012.rda -------------------------------------------------------------------------------- /data/syllable_counts_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/data/syllable_counts_data.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/inst/build.R -------------------------------------------------------------------------------- /inst/extra_statdoc/readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/inst/extra_statdoc/readme.R -------------------------------------------------------------------------------- /inst/staticdocs/index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/inst/staticdocs/index.R -------------------------------------------------------------------------------- /inst/syllable_dictionary_scraping/add_dictionary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/inst/syllable_dictionary_scraping/add_dictionary.R -------------------------------------------------------------------------------- /inst/syllable_dictionary_scraping/scrape_syllables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/inst/syllable_dictionary_scraping/scrape_syllables.R -------------------------------------------------------------------------------- /man/avaible_syllable_funs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/avaible_syllable_funs.Rd -------------------------------------------------------------------------------- /man/common_polysyllabic_proper_nouns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/common_polysyllabic_proper_nouns.Rd -------------------------------------------------------------------------------- /man/compute_syllable_counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/compute_syllable_counts.Rd -------------------------------------------------------------------------------- /man/count_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/count_string.Rd -------------------------------------------------------------------------------- /man/count_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/count_vector.Rd -------------------------------------------------------------------------------- /man/count_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/count_vector_by.Rd -------------------------------------------------------------------------------- /man/hamlets_soliloquy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/hamlets_soliloquy.Rd -------------------------------------------------------------------------------- /man/lookup_syllable_counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/lookup_syllable_counts.Rd -------------------------------------------------------------------------------- /man/presidential_debates_2012.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/presidential_debates_2012.Rd -------------------------------------------------------------------------------- /man/print.available.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/print.available.Rd -------------------------------------------------------------------------------- /man/readability_word_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/readability_word_stats.Rd -------------------------------------------------------------------------------- /man/readability_word_stats_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/readability_word_stats_by.Rd -------------------------------------------------------------------------------- /man/sum_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/sum_string.Rd -------------------------------------------------------------------------------- /man/sum_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/sum_vector.Rd -------------------------------------------------------------------------------- /man/sum_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/sum_vector_by.Rd -------------------------------------------------------------------------------- /man/syllable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/syllable.Rd -------------------------------------------------------------------------------- /man/syllable_counts_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/syllable_counts_data.Rd -------------------------------------------------------------------------------- /man/tally_both_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_both_string.Rd -------------------------------------------------------------------------------- /man/tally_both_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_both_vector.Rd -------------------------------------------------------------------------------- /man/tally_both_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_both_vector_by.Rd -------------------------------------------------------------------------------- /man/tally_di_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_di_string.Rd -------------------------------------------------------------------------------- /man/tally_di_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_di_vector.Rd -------------------------------------------------------------------------------- /man/tally_di_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_di_vector_by.Rd -------------------------------------------------------------------------------- /man/tally_mono_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_mono_string.Rd -------------------------------------------------------------------------------- /man/tally_mono_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_mono_vector.Rd -------------------------------------------------------------------------------- /man/tally_mono_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_mono_vector_by.Rd -------------------------------------------------------------------------------- /man/tally_poly_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_poly_string.Rd -------------------------------------------------------------------------------- /man/tally_poly_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_poly_vector.Rd -------------------------------------------------------------------------------- /man/tally_poly_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_poly_vector_by.Rd -------------------------------------------------------------------------------- /man/tally_short_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_short_string.Rd -------------------------------------------------------------------------------- /man/tally_short_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_short_vector.Rd -------------------------------------------------------------------------------- /man/tally_short_vector_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/man/tally_short_vector_by.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-avaible_syllable_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-avaible_syllable_funs.R -------------------------------------------------------------------------------- /tests/testthat/test-compute_syllable_counts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-compute_syllable_counts.R -------------------------------------------------------------------------------- /tests/testthat/test-count_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-count_string.R -------------------------------------------------------------------------------- /tests/testthat/test-count_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-count_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-count_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-count_vector_by.R -------------------------------------------------------------------------------- /tests/testthat/test-lookup_syllable_counts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-lookup_syllable_counts.R -------------------------------------------------------------------------------- /tests/testthat/test-readability_word_stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-readability_word_stats.R -------------------------------------------------------------------------------- /tests/testthat/test-readability_word_stats_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-readability_word_stats_by.R -------------------------------------------------------------------------------- /tests/testthat/test-sum_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-sum_string.R -------------------------------------------------------------------------------- /tests/testthat/test-sum_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-sum_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-sum_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-sum_vector_by.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_both_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_both_string.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_both_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_both_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_both_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_both_vector_by.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_di_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_di_string.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_di_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_di_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_di_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_di_vector_by.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_mono_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_mono_string.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_mono_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_mono_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_mono_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_mono_vector_by.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_poly_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_poly_string.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_poly_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_poly_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_poly_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_poly_vector_by.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_short_string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_short_string.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_short_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_short_vector.R -------------------------------------------------------------------------------- /tests/testthat/test-tally_short_vector_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tests/testthat/test-tally_short_vector_by.R -------------------------------------------------------------------------------- /tools/figure/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/figure/Thumbs.db -------------------------------------------------------------------------------- /tools/figure/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/figure/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /tools/figure/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/figure/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /tools/syllable_logo/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/syllable_logo/Thumbs.db -------------------------------------------------------------------------------- /tools/syllable_logo/r_syllable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/syllable_logo/r_syllable.png -------------------------------------------------------------------------------- /tools/syllable_logo/r_syllable.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/syllable_logo/r_syllable.pptx -------------------------------------------------------------------------------- /tools/syllable_logo/r_syllablea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/syllable_logo/r_syllablea.png -------------------------------------------------------------------------------- /tools/syllable_logo/resize_icon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinker/syllable/HEAD/tools/syllable_logo/resize_icon.txt --------------------------------------------------------------------------------