Finally enjoying getting to use the package for initial flipper explorations, but discovered that quanteda_options is used throughout, yet is not recognised when the full namespace is not loaded.
pkgs <- tools::CRAN_package_db()
pkg_txt <- apply (cbind (pkgs$Title, pkgs$Description), 1, paste, collapse = " ")
pkg_corpus <- quanteda::corpus (pkg_txt)
pkg_dfm <- quanteda::dfm (pkg_corpus, remove = stopwords ("english"), stem = TRUE,
remove_punct = TRUE)
## Error in if (verbose) catm("Creating a dfm from a corpus ...\n") :
## argument is of length zero
The quick and dirty solution would be to include an extra
if (is.null (verbose))
verbose = FALSE
in ... every function.
Finally enjoying getting to use the package for initial
flipperexplorations, but discovered thatquanteda_optionsis used throughout, yet is not recognised when the full namespace is not loaded.The quick and dirty solution would be to include an extra
in ... every function.