How to use map class function for plotting

Hello,

I want to plot several model's coefficient in one graph. I use following code:

d <- split(d, d$BANK)
    d %>% 
        map(~ lm(PROBABILITY_OF_DEFAULT ~ PTI_RATIO, data = .x)) %>% 
        map(plot_summs)

where, plot_summs has following syntax: plot_summs(fit, fit2, fitN, scale = TRUE)

I want to draw plot like this:

Can I do it with map class function?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.