You might be able to find where the error occurred by putting the following
lines in ~/.Rprofile
cat("~/.Rprofile: setting alternate error handler\n")
options(
error=quote({
dump.frames()
writeLines(c("Stack trace", paste0(" ",names(last.dump}))
Bill Dunlap
TIBCO Software
On 10 June 2019 at 13:21, Rob Foxall wrote:
| I've got an R package that I periodically create in what I assume is
| an old-fashioned way:
|
| Within R: use "package.skeleton"
| Outside of R: update e.g. .rd files as appropriate
| Command window: run the following commands
| R CMD build packageN
Hi,
(Re-posting here as per advice from r-help)
I've got an R package that I periodically create in what I assume is
an old-fashioned way:
Within R: use "package.skeleton"
Outside of R: update e.g. .rd files as appropriate
Command window: run the following commands
R CMD build packageName
R CMD