summary.speffSurv {speff2trial} | R Documentation |
Summarizing results for semiparametric efficient estimation and testing for a two-sample treatment effect with a right-censored time-to-event endpoint
Description
summary
method for an object of class "speffSurv
".
Usage
## S3 method for class 'speffSurv'
summary(object,...)
Arguments
object |
an object of class " |
... |
for other methods. |
Details
print.summary.speffSurv
prints a formatted summary of results. In the initial section, right-sided formulas
defining the optimal selected functions in the randomization and censoring space are printed. Further, an inferential
table is generated with point and interval estimates of the log hazard ratio, standard error estimates, and Wald test
p-values using both the proportional hazards and covariate-adjusted estimation methods. At least five significant
digits are printed.
Value
A list with the following components:
tab |
inferential table for the treatment effect. |
method |
search technique employed in the model selection procedure. |
formula |
a list with components |
fixed |
a logical value; if |
See Also
Examples
### from the example for 'speffSurv':
data <- na.omit(ACTG175[ACTG175$arms==0 | ACTG175$arms==1, ])
data <- data[1:100, ]
fit1 <- speffSurv(Surv(days,cens) ~ cd40+cd80+age,
data=data, trt.id="arms", fixed=TRUE)
summary(fit1)