Releases: tidymodels/broom
Version 0.3.5: rlm and gam tidiers, fixed bugs in felm and cv.glmnet
- Fixed small bug in
felm
where the.fitted
and.resid
columns were matrices rather than vectors. - Added tidiers for
rlm
(robust linear model) andgam
(generalized additive model) objects, including adjustments to "lm" tidiers in order to handle them. See?rlm_tidiers
and?gam_tidiers
for more. - Removed rownames from
tidy.cv.glmnet
output
Version 0.3.4: NA-handling in augment; rowwise tidying
-
The behavior of
augment
, particularly with regard to missing data and thena.exclude
argument, has through the use of theaugment_columns
function been made consistent across the following models:lm
glm
nls
merMod
(lme4
)survreg
(survival
)coxph
(survival
)
Unit tests in
tests/testthat/test-augment.R
were added to ensure consistency across these models. -
tidy
,augment
andglance
methods were added forrowwise_df
objects, and are set up to apply across their rows. This allows for simple patterns such as:regressions <- mtcars %>% group_by(cyl) %>% do(mod = lm(mpg ~ wt, .)) regressions %>% tidy(mod) regressions %>% augment(mod)
See
?rowwise_df_tidiers
for more. -
Added
tidy
andglance
methods forArima
objects, andtidy
forpairwise.htest
objects. -
Fixes for CRAN: change package description to title case, removed NOTES, mostly by adding
globals.R
to declare global variables. -
This is the original version published on CRAN.
Version 0.3: tidiers for lme4, glmnet, survival, and more
- Tidiers have been added for S3 objects from the following packages:
lme4
glmnet
survival
zoo
felm
MASS
(ridgelm
objects)
tidy
andglance
methods for data.frames have also been added, andaugment.data.frame
produces an error (rather than returning the same data.frame).stderror
has been changed tostd.error
(affects many functions) to be consistent with broom's naming conventions for columns.- A function
bootstrap
has been added based on this example, to perform the common use case of bootstrapping models.
Version 0.2: augment and glance
This release introduces the augment
and glance
generics, while the original included only tidy
. The three methods are explained in the vignettes, and the changes to the package in the NEWS file.
First release
Initial public release.