params.coxph: parameter estimates from a cox ph model fit

Description Usage Arguments Details Value Note Author(s) References See Also Examples

Description

function does. ~~

Usage

1
2
  params.coxph(fit,
    alpha = getOption("qwraps.alpha", 0.05), ...)

Arguments

fit
alpha
...

Details

above ~~

Value

?

Note

?

Author(s)

Peter DeWitt

References

?

See Also

?

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (fit, alpha = getOption("qwraps.alpha", 0.05), ...)
{
   rtn <- summary(fit)$coef[, -2]
   rtn[, 3] <- rtn[, 1] + qnorm(1 - alpha/2) * rtn[, 2]
   rtn[, 2] <- rtn[, 1] + qnorm(alpha/2) * rtn[, 2]
   return(params_frmtr(rtn, ...))
 }

dewittpe/qwraps documentation built on May 15, 2019, 5:07 a.m.