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
I'm currently working on converting survival curves plotted by ggsurvplot to a plotly chart. However it does not plot the confidence intervals provided by ggsurv. The following warning was generated when i tried to plot it.
Warning in geom2trace.default(dots[[1L]][[1L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) :
geom_GeomConfint() has yet to be implemented in plotly.
If you'd like to see this geom implemented,
Please open an issue with your example code at https://github.com/ropensci/plotly/issues
This is the code to generate the plot using ggsurvplot
I'm currently working on converting survival curves plotted by ggsurvplot to a plotly chart. However it does not plot the confidence intervals provided by ggsurv. The following warning was generated when i tried to plot it.
Warning in geom2trace.default(dots[[1L]][[1L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) :
geom_GeomConfint() has yet to be implemented in plotly.
If you'd like to see this geom implemented,
Please open an issue with your example code at
https://github.com/ropensci/plotly/issues
This is the code to generate the plot using ggsurvplot
p<-ggsurvplot(
survfit(res),
xlab = "Chargeoff Time (Months)",
palette = "#2E9FDF",
data = final_data,
ggtheme = theme_minimal(),
ylab = "Loan Survival Probablity",
)
This is to generate the same plot using plotly
plotly::ggplotly(p$plot)
Can this be implemented?
The text was updated successfully, but these errors were encountered: