print_cox_outputs function

Print outputs from Cox regression

Print outputs from Cox regression

Just a wrapper to get quantities out of a call to coxph()

print_cox_outputs(cox_fit, print_output = TRUE)

Arguments

  • cox_fit: A model fitted with coxph()
  • print_output: Print summary to screen if TRUE

Returns

A list including beta, HR, SE, and CI

Examples

time <- rnorm(100) status <- rbinom(n=100, prob=0.5, size=1) arm <- c(rep(1,50), rep(0,50)) temp_cox <- survival::coxph(survival::Surv(time, status) ~ arm) print_cox_outputs(temp_cox)
  • Maintainer: Ryan Sun
  • License: GPL-3
  • Last published: 2020-11-25

Useful links