Closed
Description
Relevant SO post:
library(jtools)
# example models
tmp <- list(m1 = lm(mpg ~ cyl + disp, data = mtcars),
m2 = lm(mpg ~ cyl + hp, data = mtcars))
This works:
plot_summs(tmp$m1, tmp$m2)
Ideally, should work with a list input, as:
plot_summs(tmp)
Workaround suggested at SO:
do.call(plot_summs, setNames(tmp, NULL))