coefplot
coefplot copied to clipboard
Plotting model coefficients
If I specify anything other than identity for the `trans` argument in `coefplot()`, I get the following warning message. ``` r library(coefplot) model2 10000 ~ carat + cut*color, data=diamonds, family=binomial(link="logit"))...
The coefplot package has been very useful in creating graphs that easily and clearly explain results. Thank you for that! Now I am trying to compare coefficients between different models,...
coefplot.glm produces graph when not specifying predictors but adding it produces: `Error in `$
Suppress the warning from `geom_errorh()`
I am running examples from the `extract.coef` I get the following error ```{R} > data(diamonds) > library(coefplot) > mod1 mod2 10000 ~ carat + cut + x, data=diamonds, family=binomial(link="logit")) >...
My attempts to use coefplot() today ran into a problem with the ggproto() function in ggplot2. I got the following message: Ignoring unknown aesthetics: xmin, xmaxError: PositionDodgeV was built with...
Switch iterations to data.table to speed up performance.
Found an easy way to remove the base factor name when plotting only the coefficients of a factor: since this is ggplot2, I can just add a function to label...