Displaying 2 results from an estimated 2 matches for "rdocfile".
Did you mean:
docfile
2005 Jul 15
2
R v2.1.0 patched (>2005-05-09) for Windows?
...problem first occurs and are now looking for reports from newer version,
but pre-Rv2.1.1.
If you've got R v2.1.0 patched for Windows *after 2005-05-09*, could you
please try the following in that version of R?
install.packages("R.oo")
library(R.oo)
author <- "dummy"
rdocFile <- system.file("misc", "Exception.R", package="R.oo")
cat("# Empty example code\n", file="Exception.Rex")
Rdoc$compile(rdocFile, destPath=tempdir())
print("successful!")
If you see "successful!", that version is "ok"...
2005 Jun 27
2
R v2.1.1 for Windows and "non-reproducible" crashes
.../R")
[This is a version built with R v2.1.0, because I cannot make the
package pass R CMD check on v2.1.1 because of the crashes]
4. Cut'n'paste the following example from ?Rdoc to the R prompt:
library(R.oo)
author <- "Henrik Bengtsson, \url{http://www.braju.com/R/}"
rdocFile <- system.file("misc", "Exception.R", package="R.oo")
file.show(rdocFile)
destPath <- tempdir()
Rdoc$compile(rdocFile, destPath=destPath)
rdFiles <- list.files(destPath, full.names=TRUE)
print(rdFiles)
file.show(rdFiles[1])
file.remove(rdFiles)
For me it cras...