Displaying 1 result from an estimated 1 matches for "newlala".
Did you mean:
newdata
2008 Aug 28
2
Tidying up code - Warning message: deparse may be incomplete
...ne 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 tidylala.R contains:
options(keep.source = FALSE)
source("lala.R")
dump(ls(all = TRUE), file = "newlala.R")
On Linux I run:
R --vanilla < tidylala.R
Then I obtain:
Warning message:
In dump(ls(all = TRUE), file = "newlala.R") : deparse may be incomplete
The file newlala.R looks like this:
`partialHazards` <-
function (t, v, covArray, betas)
{
exp(covArray[v, t, ] %...