Skip to content
Prev 3420 / 12125 Next

[R-pkg-devel] problems documenting data sets

I was first thinking there could be an occurence of Brom with a capital B in the package somewhere.
In which case you could run from the current package main directory:

cat("All files in R folder\n", file="AllFiles.R")
for(f in dir("R",full=T)) cat(readLines(f), file="AllFiles.R", sep="\n", append=TRUE)

and search for Brom in that file...
But Rolf is likely right. I was thinking the wrong way around...

Berry