summary.TransModel {TransModel} | R Documentation |
A summary table contains the coefficient estimates, standard errors, test statistics and p values in the linear transformation model.
## S3 method for class 'TransModel'
summary(object, ...)
object |
An object returned from the function TransModel. |
... |
Other auguments to be specified for the summary function. |
coefficients |
The summary table. |
data(veteran)
fit<-TransModel(Surv(time,status)~karno+as.factor(celltype),data=veteran,r=0,subset=(prior==0))
summary(fit)
fit0<-TransModel(Surv(time,status)~1,data=veteran,r=0,subset=(prior==0)) #the null model
summary(fit0)