Kom igångKom igång gratis

Computing a Weibull and a log-normal model

In this exercise, we want to compute a Weibull model and a log-normal model for the GBSG2 data. You will see that the process of computing the survival curve is the same. In the upcoming exercise, we will compare the results from the two models and see the differences.

The survival, survminer, and reshape2 packages and the GBSG2 data are loaded for you in this exercise.

Den här övningen är en del av kursen

Survival Analysis in R

Visa kurs

Interaktiv övning med praktiskt arbete

Testa den här övningen genom att slutföra den här exempelkoden.

# Weibull model
wbmod <- ___(Surv(time, cens) ~ horTh, data = GBSG2)

# Log-Normal model
lnmod <- ___(Surv(time, cens) ~ horTh, data = GBSG2, ___ = "lognormal")
Redigera och kör kod