search for: rdafil

Displaying 3 results from an estimated 3 matches for "rdafil".

Did you mean: rdafile
2016 May 01
2
Storage of byte code-compiled functions in sysdata.rda
...th stats::approxfun imported in the NAMESPACE file (2) in an R session on R-devel do require(InterpolTry) x <- 1:100 y <- 1:100 fun <- approxfun(x,y) ## revise the next line accordingly to your local settings SrcRPathInterpolTry <- <path_to_(source-)R-folder_of_InterpolTry> RdaFile <- file.path(SrcRPathInterpolTry, "sysdata.rda") save(fun, file = RdaFile) tools::resaveRdaFiles(RdaFile) (3) re-build package InterpolTry and re-install it (4) create a minimal R package "UseInterpolTry", again with byte-compilation on in the DESCRIPTION file...
2016 May 05
0
Storage of byte code-compiled functions in sysdata.rda
...CE file > > (2) in an R session on R-devel do > > require(InterpolTry) > x <- 1:100 > y <- 1:100 > fun <- approxfun(x,y) > ## revise the next line accordingly to your local settings > SrcRPathInterpolTry <- <path_to_(source-)R-folder_of_InterpolTry> > RdaFile <- file.path(SrcRPathInterpolTry, "sysdata.rda") > save(fun, file = RdaFile) > tools::resaveRdaFiles(RdaFile) > > (3) re-build package InterpolTry and re-install it > > (4) create a minimal R package "UseInterpolTry", again > with byte-compilation o...
2016 May 01
2
Storage of byte code-compiled functions in sysdata.rda
Hi r-devels, we are seeing a new problem with our packages RobAStRDA (just new on CRAN, thanks to Uwe and Kurt!) and RobExtremes (to be submitted). It must be something recent with the way you internally treat/store byte-code compiled functions, as we have no problems with R-3.1.3, but do see an "Error in fct(x) : byte code version mismatch" with R-devel SVNrev r70532. Background: