summary.gcmrec {gcmrec}R Documentation

summary of 'gcmrec'

Description

This function returns hazard rations (HR) and its confidence intervals

Usage

## S3 method for class 'gcmrec':
summary(object, level = 0.95, len = 6, d = 2, lab="hr", ...)

Arguments

object output from a call to gcmrec.
level significance level of confidence interval. Default is 95%.
len the desired number of digits after the decimal point. Default of 6 digits is used.
d the total field width. Default is 6.
lab label of printed results.
... other unusued arguments.

Details

This function calls to intervals.gcmrec

Value

Prints HR and its confidence intervals. Confidence level is allowed (level argument)

See Also

intervals.gcmrec

Examples


data(lymphoma)
mod<-gcmrec(Survr(id,time,event)~as.factor(distrib),data=lymphoma,s=1000)
summary(mod)

# confidence interval at 99

summary(mod,level=0.99)


[Package gcmrec version 1.0-3 Index]