ComenzarEmpieza gratis

Interpreting coefficients

We have a dataset of lung cancer patients. In this exercise, we want to know if the sex of the patients is associated with their survival time.

The survival package and the dataset are already loaded for you.

Este ejercicio forma parte del curso

Survival Analysis in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Look at the data set
str(dat)

# Estimate a Weibull model
wbmod <- ___(___(___, status) ~ sex, data = dat)
coef(wbmod)
Editar y ejecutar código