├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── coercion.R ├── pkg.R └── validators.R ├── README.md ├── inst └── examples │ ├── tif_as.R │ ├── tif_is_corpus_character.R │ ├── tif_is_corpus_df.R │ ├── tif_is_dtm.R │ ├── tif_is_tokens_df.R │ └── tif_is_tokens_list.R ├── man ├── .Rapp.history ├── tif-package.Rd ├── tif_as.Rd ├── tif_is_corpus_character.Rd ├── tif_is_corpus_df.Rd ├── tif_is_dtm.Rd ├── tif_is_tokens_df.Rd └── tif_is_tokens_list.Rd └── tests ├── testthat.R └── testthat └── test-validators.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/coercion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/R/coercion.R -------------------------------------------------------------------------------- /R/pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/R/pkg.R -------------------------------------------------------------------------------- /R/validators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/R/validators.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/README.md -------------------------------------------------------------------------------- /inst/examples/tif_as.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/inst/examples/tif_as.R -------------------------------------------------------------------------------- /inst/examples/tif_is_corpus_character.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/inst/examples/tif_is_corpus_character.R -------------------------------------------------------------------------------- /inst/examples/tif_is_corpus_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/inst/examples/tif_is_corpus_df.R -------------------------------------------------------------------------------- /inst/examples/tif_is_dtm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/inst/examples/tif_is_dtm.R -------------------------------------------------------------------------------- /inst/examples/tif_is_tokens_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/inst/examples/tif_is_tokens_df.R -------------------------------------------------------------------------------- /inst/examples/tif_is_tokens_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/inst/examples/tif_is_tokens_list.R -------------------------------------------------------------------------------- /man/.Rapp.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/tif-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif-package.Rd -------------------------------------------------------------------------------- /man/tif_as.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif_as.Rd -------------------------------------------------------------------------------- /man/tif_is_corpus_character.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif_is_corpus_character.Rd -------------------------------------------------------------------------------- /man/tif_is_corpus_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif_is_corpus_df.Rd -------------------------------------------------------------------------------- /man/tif_is_dtm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif_is_dtm.Rd -------------------------------------------------------------------------------- /man/tif_is_tokens_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif_is_tokens_df.Rd -------------------------------------------------------------------------------- /man/tif_is_tokens_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/man/tif_is_tokens_list.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-validators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropenscilabs/tif/HEAD/tests/testthat/test-validators.R --------------------------------------------------------------------------------