Skip to content

Add support for other survival estimates #86

@gowerc

Description

@gowerc

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 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions