insightsengineering / insightsengineering/ggplot2.utils

Add support for other survival estimates

Aperta
#86 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub
enhancement
Lingua principale
R
Stelle
9
Fork
1
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

Currently using this package it is only possible to add reference lines for survival estimates via KM estimates. However it is common for users to plot their survival data in terms of transformations of the survival function e.g.

- Hazard function
- Cumulative Hazard function
- Log Hazard function

It would be good for this package to support these as well.

Cumulative Hazard estimates are already available from the `survfit` function
```
x <- survfit(Surv(time, event) ~ 1, data = dat)
x$cumhaz
```

Hazard functions are more complex. I'm not sure what the best way is but I see many recommendations for [`muhaz`](https://rdrr.io/cran/muhaz/man/muhaz.html) e.g.
```
muhaz::muhaz(dat$time, dat$event)
```
Though it doesn't appear to have a grouping option so you would need to loop over the required groups.

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.