Cure Model Interpretation #1264
-
Hi @CamDavidsonPilon! I'm experimenting with using survival regression with a cure component to model the lifetimes of customers that we identify as at risk of churning, and I need help with interpreting the summary of the cure regression model 😅. The dataset contains all accounts that we identify as "at-risk" and some of them return and some don't (churn) so the asymptote in the survival curve, in this case, is the churn rate. The custom function pretty much looks like the one in the example in the doc:
I think I know how to interpret beta in the summary since it represents the churn rate, but I also have features added to tune lambda, and I'm not sure how to correctly interpret the effect of the coefficients for lambda. I've seen cases where the coefficient is positive for the same feature for beta but negative for lambda. Any guidance + resources to help there would be super helpful! PS: Thanks so much for writing this package. It's cool stuff! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hi @helloannietran - I can try to help here. I don't have any canonical resource I can share, but I'll give you a better feeling for the model.
|
Beta Was this translation helpful? Give feedback.
hi @helloannietran - I can try to help here. I don't have any canonical resource I can share, but I'll give you a better feeling for the model.
lambda
vsbeta
, consider also the std. error (in these(coef)
column). If these(coef)
is large relative to thecoef
, then the difference of signs could be just noise.beta
means: if a coef is positive, then an increase in the c…