Displaying 2 results from an estimated 2 matches for "en_stats".
Did you mean:
n_stats
2013 Jan 07
1
Missing /share/dictionaries/en_stats.rds
...MD check'
by setting environment variable '_R_CHECK_CRAN_INCOMING_USE_ASPELL_'
to 'true', I get:
* checking CRAN incoming feasibility ...Warning in aspell(files, filter = "dcf",
control = control, encoding = encoding, :
The following dictionaries were not found:
en_stats
Looking at the source code, I found that I'm missing 'en_stats.rds', e.g.
> Sys.glob(file.path(R.home("share"), "dictionaries", "*.rds"))
character(0)
I see that the missing file is in
http://svn.r-project.org/R/trunk/share/dictionaries/. Is there a...
2013 Jan 07
0
aspell(..., dictionaries) incorrectly passes double-quoted arguments via shell() [and a patch]
...("Hello", "world", "ANOVA"), con="text.txt")
# Check it (word 'babaa' is unknown)
> aspell("text.txt")
ANOVA
text.txt:3:1
THIS DOES NOT WORK:
# Get a dictionary
> url <- "http://svn.r-project.org/R/trunk/share/dictionaries/en_stats.rds"
> download.file(url, "en_stats.rds", mode="wb")
# Check it
> aspell("text.txt", dictionaries="./en_stats.rds")
Error in aspell("text.txt", dictionaries = "./en_stats.rds") :
Running aspell failed with diagnostics:
The fi...