fsolt / dotwhisker

Dot-and-Whisker Plots of Regression Results
https://fsolt.org/dotwhisker/
Other
60 stars 10 forks source link

Incorrect CI description #91

Closed sammo3182 closed 3 years ago

sammo3182 commented 5 years ago

The alpha for style = "dotwhisker" has been deprecated. Instead, users can specify conf.level to change the range of the whisker through broom:tidy.

Need to correct the relevant descriptions in the vignette.

dwplot(m1, alpha = 0.01) # not work

dwplot(m1, conf.level = .90)

Check line 249-250 of dwplot.R, though

fsolt commented 5 years ago

See also #93

sammo3182 commented 3 years ago

Fixed by eaac2062668bcbf14bc2fab6cfc6fea445f94ffe; adding the ci option.