Re: [R] Question about dotwhisker

2020-12-19 Thread Dan Bolser
Sorry, forgot to link the actual vignette: https://cran.r-project.org/web/packages/dotwhisker/vignettes/dotwhisker-vignette.html In fact the vignette states: dwplot(m1_df) #same as dwplot(m1) where m1_df is m1_df <- tidy(m1) They are not the same in either the vignette itself or on my computer.

[R] Question about dotwhisker

2020-12-19 Thread Dan Bolser
Hello, I'm reading this and one part is confusing me (the most ;-) library(dotwhisker) library(broom) library(dplyr) m1 <- lm(mpg ~ wt + cyl + disp + gear, data = mtcars) # Please compare: dwplot(m1) dwplot(tidy(m1)) Why is the dwplot of tidy(m1) so different from the dwplot of m1? I had