search for: durv

Displaying 1 result from an estimated 1 matches for "durv".

Did you mean: drv
2018 Jun 27
0
new behavior of model.response
I am getting some unexplained changes in the latest version of survival, and finally traced it down to this: model.response acts differently for Surv objects. Here is a closed form example using a made up class Durv = diagnose survival.?? I tracked it down by removing methods one by one from Surv; I had just added some new ones so they were my suspects. test <- data.frame(time=1:8, status=rep(0:1, 4), age=60:67) row.names(test) <- letters[1:8] Durv <- function(...) { ??? temp <- cbind(...) ??...