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
To better support joint modeling work, would be nice to integrate the outcome data specification (currently captured as event_col, time_col, etc) into the patsy formula.
Currently, formula takes a RHS-formula only, ie: formula = "~ X1 + X2".
The plan is to extend this to support: formula = "surv(time_col, event_col) ~ X1 + X2".
This is useful for joint models since we can then more naturally support a list of formulas, one per submodel of the joint model.
The text was updated successfully, but these errors were encountered:
To better support joint modeling work, would be nice to integrate the outcome data specification (currently captured as
event_col
,time_col
, etc) into the patsy formula.Currently,
formula
takes a RHS-formula only, ie:formula = "~ X1 + X2"
.The plan is to extend this to support:
formula = "surv(time_col, event_col) ~ X1 + X2"
.This is useful for joint models since we can then more naturally support a list of formulas, one per submodel of the joint model.
The text was updated successfully, but these errors were encountered: