Skip to content

Releases: tidymodels/broom

Broom 0.5.6

23 Apr 19:04
Compare
Choose a tag to compare

See NEWS

Broom 0.5.4

29 Feb 16:18
Compare
Choose a tag to compare

See NEWS

Broom 0.5.3

14 Dec 19:39
Compare
Choose a tag to compare

Minor updates to remain on CRAN after changes to matrix classing behavior in R 4.0.0

Broom 0.5.2

07 Apr 22:01
Compare
Choose a tag to compare
  • Users should notice no differences from previous releases
  • Fixes failing CRAN checks
  • Rewrite of tidy.ergm() internals for ergm 3.10

Broom 0.5.1

05 Dec 19:11
Compare
Choose a tag to compare

Minor update to re-export tidy(), glance() and augment() from the generics package.

Broom 0.5.0

17 Jul 07:15
c3c5d7c
Compare
Choose a tag to compare

Details available at https://broom.tidyverse.org/news/. This commit is exactly the code in the CRAN 0.5.0 version of the package.

Version 0.4.0: Many new tidiers; fixed issues in ANOVA and lme4

30 Nov 20:31
Compare
Choose a tag to compare
  • Added tidiers for geeglm, nlrq, roc, boot, bgterm, kappa, binWidth, binDesign, rcorr, stanfit, rjags, gamlss, and mle2 objects.
  • Added tidy methods for lists, including u, d, v lists from svd, and x, y, z lists used by image and persp
  • Added quick argument to tidy.lm, tidy.nls, and tidy.biglm, to create a smaller and faster version of the output.
  • Changed rowwise_df_tidiers to allow the original data to be saved as a list column, then provided as a column name to augment. This required removing data from the augment S3 signature. Also added tests-rowwise.R
  • Fixed various issues in ANOVA output
  • Fixed various issues in lme4 output
  • Fixed issues in tests caused by dev version of ggplot2

Version 0.3.7 Tidiers for biglm, coeftest, plm, power.htest, lme, and more

06 May 14:16
Compare
Choose a tag to compare
  • Added tidiers for "plm" (panel linear model) objects from the plm package.
  • Added tidy.coeftest for coeftest objects from the lmtest package.
  • Set up tidy.lm to work with "mlm" (multiple linear model) objects (those with multiple response columns).
  • Added tidy and glance for "biglm" and "bigglm" objects from the biglm package.
  • Fixed bug in tidy.coxph when one-row matrices are returned
  • Added tidy.power.htest
  • Added tidy and glance for summaryDefault objects
  • Added tidiers for "lme" (linear mixed effects models) from the nlme package
  • Added tidy and glance for multinom objects from the nnet package.

Version 0.3.6 Tidying for matrices, aovlist, and glance for aov

18 Feb 21:48
Compare
Choose a tag to compare
  • Fixed bug in tidy.pairwise.htest, which now can handle cases where the grouping variable is numeric.
  • Added tidy.aovlist method. This added stringr package to IMPORTS to trim whitespace from the beginning and end of the term and stratum columns. This also required adjusting tidy.aov so that it could handle strata that are missing p-values.
  • Set up glance.lm to work with aov objects along with lm objects.
  • Added tidy and glance for matrix objects, with tidy.matrix converting a matrix to a data frame with rownames included, and glance.matrix returning the same result as glance.data.frame.
  • Changed DESCRIPTION Authors@R to new format

Version 0.3.5: rlm and gam tidiers, fixed bugs in felm and cv.glmnet

05 Jan 20:33
Compare
Choose a tag to compare
  • Fixed small bug in felm where the .fitted and .resid columns were matrices rather than vectors.
  • Added tidiers for rlm (robust linear model) and gam (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