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
The documentation shows the possibility of getting partial plots for a glmboost object. I have tried many things and have only been able to obtain coefficient paths. Can you please suggest some code (or an existing function) to obtain the partial plots?
Thank you!
The text was updated successfully, but these errors were encountered:
glmboost fits a GLM, not a GAM, hence there is nothing (non-linear) to plot. Technically the software could plot the estimated linear effects, but that seems unnecessary, considering it's just a single number that is visualized. It's better to use coef(your_model) in this case.
Thank you for your quick reply! I do have the coefficients, but it is also nice to plot predicted interaction effects. It sounds like the package does not have the ability to plot these for glmboost?
The documentation shows the possibility of getting partial plots for a glmboost object. I have tried many things and have only been able to obtain coefficient paths. Can you please suggest some code (or an existing function) to obtain the partial plots?
Thank you!
The text was updated successfully, but these errors were encountered: