You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed during PSI2021, life tables might be a thing that we should implement. It seems like a fairly quick win and would be an additional feature integrating into the time-to-event-analysis theme.
Do you have any examples you can share of what it looks like?
What potential packages/functions could be used to make this plot?
Farily easy with tidyr and visR, merely a wrapper around a bunch of stuff that's already implemented. Would be nice to have some standard intervals on the left (regularily spaced, smart guessing?) but to also expose the option of custom intervals like
get_risktable(survfit_visR,
times = c(0,5,10,20,13),
group="statlist"
)
There is a bug where the labels are not put into the column names. @rebecca-albrecht is this something we can have a look at? If we want to put this helper function forwards for life tables, we might want to clean it up and see if it still integrates nicely with add_risktable and your summaries.
Idea
As discussed during PSI2021, life tables might be a thing that we should implement. It seems like a fairly quick win and would be an additional feature integrating into the time-to-event-analysis theme.
Do you have any examples you can share of what it looks like?
https://en.wikipedia.org/wiki/Life_table
What potential packages/functions could be used to make this plot?
Farily easy with
tidyr
andvisR
, merely a wrapper around a bunch of stuff that's already implemented. Would be nice to have some standard intervals on the left (regularily spaced, smart guessing?) but to also expose the option of custom intervals likeThe text was updated successfully, but these errors were encountered: