Re: [Rd] rscproxy version conflict

2008-12-25 Thread Erich Neuwirth
Simon Urbanek wrote: > > It's ok to use a package built for 2.8.0 in 2.8.1 but not vice versa. It > is rare, but it has happened before that a bugfix or visibility change > adds a symbol in x.y.1 that was not there in x.y.0. Then if your package > checks for that particular feature and uses it y

[Rd] issue with [[<-Call

2008-12-25 Thread Terry Therneau
The following code works in Splus but not in R coxph <- function(formula, data, weights, subset, na.action, init, control, method= c("efron", "breslow", "exact"), singular.ok =TRUE, robust=FALSE, model=FALSE, x=FALSE, y=TRUE, ...) { method <- match.arg(method) Ca

[Rd] BATCH and testing

2008-12-25 Thread Terry Therneau
In a few of my test scripts for the survival code I expect warning messages (I actually try to trigger a couple). Using R BATCH infile outfile these messages don't end up in outfile, where I can compare them to what was expected. I don't see an option to change this. R < infile >& outfile wor

Re: [Rd] issue with [[<-Call

2008-12-25 Thread Charles C. Berry
On Thu, 25 Dec 2008, Terry Therneau wrote: The following code works in Splus but not in R coxph <- function(formula, data, weights, subset, na.action, init, control, method= c("efron", "breslow", "exact"), singular.ok =TRUE, robust=FALSE, model=FALSE, x=FALSE, y=TRUE, .