NEWS
coefplot 1.2.8 (2022-01-14)
- Methods for plotting
{workflows}
and {parsnip}
models.
- Fixed warning due to deprecation of
guide
argument in {ggplot2}
.
coefplot 1.2.7 (2021-01-14)
- Coefficients near zero in
{xgboost}
models are not returned and the user can set the tolerance level.
- Changed the default
lwdOuter
to be 0 on Windows machines and 0.5 on non-Windows machines. Based on a pull request from xfim.
- Removed warnings when calling
coefplot()
on a {glmnet}
model.
- New
interactive
argument causes the plot to be interactive, using {plotly}
.
coefplot 1.2.6 (2018-02-07)
coefpath()
has an argument for ID and assigns a random ID to the {dygraph}
object if one is not supplied.
- Zero-valued coefficients in
{xgboost}
models are not returned by default.
coefplot 1.2.5 (2018-01-04)
- Added
coefpath
to plot the coefficient path resulting from a glmnet
object.
coefplot
now displays the coefficients from a linear xgboost
model.
coefplot 1.2.4 (2016-01-10)
- Patched to accommodate changes to
{ggplot2}
.
coefplot 1.2.3
- Can run
coefplot()
on a data.frame
that is properly setup like on resulting from coefplot(..., plot=FALSE)
.
coefplot 1.2.2
- Support for
{glmnet}
models. Added tests.
coefplot 1.2.1
- In
mulitplot()
there is now an option to reverse the order of the legend so it matches the ordering in the plot.
coefplot 1.2.0 (2013-05-12)
- Major update. The codebase has been refactored to run faster and be easily updated for improvements and adding new models.
- New arguments (predictors and coefficients) for specifying coefficients to be plotted both by indicating the specific coefficients (including specific factor levels) or by specifying the predictors that created coefficients. This is particularly important for factor variables and interactions.
- New argument (newNames) for giving new names to coefficients.
- Mulitplot can be used to plot Andy Gelman's secret weapon by setting secret.weapon to TRUE and selecting just one coefficient in coefficients. For a vertical secret weapon set by to "Model" and horizontal to FALSE.
- Faceting a single model no longer works.
#Version 1.1.9
- Refactoring of code to make new models easier to add.
- For now this means certain functionality will be lost, such as the shortening of coefficient names, plot a factor variable numerically.
coefplot 1.1.8 (2012-09-29)
- Minor changes to plotting to reflect change in
{gpplot2}
0.9.2.
coefplot 1.1.7 (2012-04-13)
- Thanks to Felipe Carrillo I have fixed a bug in
multiplot()
. Previously, if multiple models with the same formula but different data.frames were inputed then they would all have the same name (even if specified with the names
argument) and only one model would be plotted. This now works as expected, plotting all the models regardless of identical formulas.
coefplot 1.1.6 (2012-01-29)
- Made change to
reshape2::melt()
so that variable.name
and value.name
behave properly with new ggplot2
coefplot 1.1.5 (2012-01-12)
- Fixed glitch that didn't plot inner CI for single plots or multipane multiplots
coefplot 1.1.4 (2012-01-04)
- Added functionality for
rxLogit()
coefplot 1.1.2 (2011-11-19)
multiplot()
can plot in a single pane or in facets
- Changed sort argument to use
match.arg()
coefplot 1.1.1
- Adjusting the S3 dispatch for
coefplot.rxLinMod()
coefplot 1.1 (2011-11-02)
- Added
multiplot()
to plot numerous models at once
- Moved a lot of code in
coefplot.lm()
to their own functions
coefplot 1.0 (2011-10-27)
- First build
- Methods for plotting coefficients from
lm()
, glm()
and rxLinMod()