Closed kozaka93 closed 4 years ago
Subtitle for model_parts is centering
library(DALEX) no <- titanic_imputed[1,] m1 <- glm(survived~. , data = titanic_imputed) e1 <- explain(m1, titanic_imputed, titanic_imputed$survived, label = "glm") fi <- model_parts(e1) plot(fi)
Thanks
thanks, it's a problem with ingredients:::plot.feature_importance_explainer which overrides the theme(plot.subtitle)
ingredients:::plot.feature_importance_explainer
theme(plot.subtitle)
fixed in https://github.com/ModelOriented/ingredients/commit/5108a1050a6d7cafbfe2c2c11a61787ea0c55524
Subtitle for model_parts is centering
Thanks