strengejacke / sjPlot

sjPlot - Data Visualization for Statistics in Social Science
https://strengejacke.github.io/sjPlot
611 stars 93 forks source link

Request: extending bife support for get_APEs for marginal effects visualizations #771

Open IsadoraBM opened 3 years ago

IsadoraBM commented 3 years ago

Request to implement effects visualization for summary.bifeAPEs from get_APEs()

library(bife)
test <- iris%>% mutate(LengthDummy= if_else(Sepal.Length>5, "Long", "Short") %>% as_factor(.)) %>%  
                 bife(LengthDummy~ Sepal.Width+ Petal.Length+Petal.Width
                      | Species, data = ., "logit")
APEsIris <- summary(get_APEs(test))
str(APEsIris)
IsadoraBM commented 3 years ago

bife::bife() and bife::get_APEs() are now supported in parameters, Can you please add bife to the plotting capabilities?