Displaying 2 results from an estimated 2 matches for "permalgo".
2008 Sep 09
1
building a package that contains S4 classes and methods
...4: In dump(internalObjs, file = file.path(code_dir,
sprintf("%s-internal.R", :
deparse may be incomplete
I keep going in spite of the warnings with
R CMD check --no-examples TDC
and I get
* checking for working pdflatex ... OK
* using log directory
'/home/mariepierre/Packages/PermAlgo/PermAlgo/PermAlgo2/TDC.Rcheck'
* using R version 2.7.1 (2008-06-23)
* using session charset: UTF-8
* checking for file 'TDC/DESCRIPTION' ... OK
* checking extension type ... Package
* this is package 'TDC' version '1.0'
* checking package dependencies ... OK
* checking i...
2008 Aug 28
2
Tidying up code - Warning message: deparse may be incomplete
...de using a file
containing the following:
options(keep.source = FALSE)
source("myfuns..R")
dump(ls(all = TRUE), file = new.myfuns.R")
I have done this for my own packages and although it runs, I get several
warnings of the type:
Warning message:
In dump(ls(all = TRUE), file = "PermAlgo.R") : deparse may be incomplete
I am clueless as to what this means.
Even if I try to tidy only one function from my code, I get the warning.
E.g. the file lala.R contains only this:
partialHazards <- function(t, v, covArray, betas){ exp( covArray[v,t,]
%*% betas ) }
the file tidylal...