Thu May 5 01:58:35 2022 UTC ()
(math/R-broom) Updated 0.7.9 to 0.8.0

# broom 0.8.0
-------------------------------------------
This update  makes significant improvements to  documentation, fixes a
number of bugs,  and brings the development flow of  the package up to
date with other packages in the tidymodels.

In the big picture, this release:

* Makes many improvements to documentation:

     - All tidiers now have example code demonstrating usage in their
       documentation. Tidiers for base packages as well as selected
       others also include sample code for visualization of results
       with ggplot2.

     - Code examples in the documentation largely now follow
       consistent style---these changes were made largely to reflect
       the tidyverse style guide, addressing spacing, object naming,
       and commenting, among other things.

     - Examples previously marked with `\dontrun` or `\donttest` have
       been workshopped to run reliably.  * Clarifies errors and
       warnings for deprecated and un-maintained tidiers.  * Ensures
       that tidiers are placed in files named according to the
       model-supplying package rather than the model object class for
       easier navigability of the source code.

### Bug fixes and other improvements

* Fix `glance.fixest` error when model includes only fixed effects and
  no regressors (`#1018` by `@arcruz0`, `#1088` by
  `@vincentarelbundock`).

* Address excessive messaging from `tidy.speedlm` (`#1084` by
  `@cgoo4`, `#1087` by `@vincentarelbundock`).

* Add `nobs` column to the output of `glance.svyglm` (`#1085` by
  `@fschaffner`, `#1086` by `@vincentarelbundock`).

* Ensure `tidy.prcomp` description entries use consistent punctuation
  (`#1072` by `@PursuitOfDataScience`).

* Address breaking changes in `glance.fixest` and `tidy.btergm`.

* Simplify handling of `MASS::polr` output in the corresponding `tidy`
  and `augment` methods.

* Align continuous integration with current standards in tidymodels
  packages.

# broom 0.7.12
-------------------------------------------
Nearly identical source to broom 0.7.11窶盃pdates the maintainer email
address to an address listed in other CRAN packages maintained by the
same person.

# broom 0.7.11
-------------------------------------------
* Addressed issue with the ordering of original observations in
  `augment.rqs`. Now function preserves the original `data.frame`
  names also when the input `data.frame` only has one column (`#1052`
  by `@ilapros`).

* Addressed warning from `tidy.rma` when `x$ddf` has length greater
  than 1 (`#1064` by `@wviechtb`).

* Fix errors in `glance.lavaan` in anticipation of upcoming `tidyr`
  release (`#1067` by `@DavisVaughan`).

* Corrected the confidence interval in `tidy.crr()`. The
  `tidy.crr(conf.level=)` argument was previously ignored (`#1068` by
  `@ddsjoberg`).

# broom 0.7.10
-------------------------------------------
* Clarifies error when `pysch::mediate` output is dispatched to
  `tidy.mediate` (`#1037` by `@LukasWallrich`).

* Allows user to specify confidence level for `tidy.rma` (`#1041` by
  `@TarenSanders`)

* Clarifies documentation related to usage of `augment_columns()`;
  most package users should use `augment()` in favor of
  `augment_columns()`. See `?augment_columns` for more details.

* Extends support for `emmeans` by fixing non-standard column names in
  case of asymptotically derived inferential statistics. (`#1046` by
  `@crsh`)

* Fixes use of index columns in `augment.mlogit` and adds `.resid`
column to output. (`#1045`, `#1053`, `#1055`, and `#1056` by
`@jamesrrae` and `@gregmacfarlane`)

* Correct column naming of standard error measures in
  `glance.survfit()`.

* Various bug fixes and improvements to documentation.


(mef)
diff -r1.1 -r1.2 pkgsrc/math/R-broom/Makefile
diff -r1.3 -r1.4 pkgsrc/math/R-broom/distinfo

cvs diff -r1.1 -r1.2 pkgsrc/math/R-broom/Makefile (expand / switch to unified diff)

--- pkgsrc/math/R-broom/Makefile 2021/09/18 23:05:34 1.1
+++ pkgsrc/math/R-broom/Makefile 2022/05/05 01:58:35 1.2
@@ -1,49 +1,101 @@ @@ -1,49 +1,101 @@
1# $NetBSD: Makefile,v 1.1 2021/09/18 23:05:34 mef Exp $ 1# $NetBSD: Makefile,v 1.2 2022/05/05 01:58:35 mef Exp $
2 2
3R_PKGNAME= broom 3R_PKGNAME= broom
4R_PKGVER= 0.7.9 4R_PKGVER= 0.8.0
5 5
6MAINTAINER= pkgsrc-users@NetBSD.org 6MAINTAINER= pkgsrc-users@NetBSD.org
7COMMENT= Convert Statistical Objects into Tidy Tibbles 7COMMENT= Convert Statistical Objects into Tidy Tibbles
8LICENSE= mit # + file LICENSE 8LICENSE= mit # + file LICENSE
9 9
10DEPENDS+= R-glue>=1.4.2:../../devel/R-glue 10DEPENDS+= R-glue>=1.4.2:../../devel/R-glue
11DEPENDS+= R-purrr>=0.3.4:../../devel/R-purrr 11DEPENDS+= R-purrr>=0.3.4:../../devel/R-purrr
12DEPENDS+= R-rlang>=0.4.11:../../devel/R-rlang 12DEPENDS+= R-rlang>=0.4.11:../../devel/R-rlang
13DEPENDS+= R-backports>=1.2.1:../../math/R-backports 13DEPENDS+= R-backports>=1.2.1:../../math/R-backports
14DEPENDS+= R-dplyr>=1.0.0:../../math/R-dplyr 14DEPENDS+= R-dplyr>=1.0.0:../../math/R-dplyr
15DEPENDS+= R-ellipsis>=0.3.2:../../math/R-ellipsis 15DEPENDS+= R-ellipsis>=0.3.2:../../math/R-ellipsis
16DEPENDS+= R-generics>=0.0.2:../../math/R-generics 16DEPENDS+= R-generics>=0.0.2:../../math/R-generics
17DEPENDS+= R-tibble>=3.0.0:../../math/R-tibble 17DEPENDS+= R-tibble>=3.0.0:../../math/R-tibble
18DEPENDS+= R-tidyr>=1.1.3:../../math/R-tidyr 18DEPENDS+= R-tidyr>=1.1.3:../../math/R-tidyr
19DEPENDS+= R-stringr>=1.4.0:../../textproc/R-stringr 19DEPENDS+= R-stringr>=1.4.0:../../textproc/R-stringr
 20DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
20 21
21# Packages suggested but not available: 22#EST_DEPENDS+= R-AER-[0-9]*:
22# 'AER', 'AUC', 'bbmle', 'betareg', 'biglm', 'binGroup', 'btergm', 
23# 'caret', 'cmprsk', 'coda', 'drc', 'emmeans', 'epiR', 'ergm', 
24# 'fixest', 'gam', 'gee', 'geepack', 'glmnet', 'glmnetUtils', 'gmm', 
25# 'irlba', 'joineRML', 'Kendall', 'ks', 'Lahman', 'lavaan', 'leaps', 
26# 'lfe', 'lm.beta', 'lmodel2', 'lsmeans', 'margins', 
27# 'mclust', 'mediation', 'metafor', 'mfx', 'mlogit', 'modeldata', 
28# 'modeltests', 'muhaz', 'multcomp', 'network', 'orcutt', 'ordinal', 
29# 'plm', 'poLCA', 'psych', 'quantreg', 'robust', 'robustbase', 
30# 'rsample', 'spdep', 'spatialreg', 'speedglm', 'systemfit', 
31# 'tseries', 'vars' 
32 
33 
34TEST_DEPENDS+= R-maps-[0-9]*:../../geography/R-maps 
35TEST_DEPENDS+= R-maptools-[0-9]*:../../geography/R-maptools 
36TEST_DEPENDS+= R-rgeos-[0-9]*:../../geography/R-rgeos 
37TEST_DEPENDS+= R-akima-[0-9]*:../../math/R-akima 23TEST_DEPENDS+= R-akima-[0-9]*:../../math/R-akima
38TEST_DEPENDS+= R-lmtest-[0-9]*:../../math/R-lmtest 24#EST_DEPENDS+= R-AUC-[0-9]*:
 25TEST_DEPENDS+= R-bbmle-[0-9]*:../../math/R-bbmle
 26#EST_DEPENDS+= R-betareg-[0-9]*:
 27#EST_DEPENDS+= R-biglm-[0-9]*:
 28#EST_DEPENDS+= R-binGroup-[0-9]*:
 29#EST_DEPENDS+= R-btergm-[0-9]*:
39TEST_DEPENDS+= R-car-[0-9]*:../../math/R-car 30TEST_DEPENDS+= R-car-[0-9]*:../../math/R-car
40TEST_DEPENDS+= R-survey-[0-9]*:../../math/R-survey 31#EST_DEPENDS+= R-caret-[0-9]*:
41TEST_DEPENDS+= R-sandwich-[0-9]*:../../math/R-sandwich 32#EST_DEPENDS+= R-cmprsk-[0-9]*:
42TEST_DEPENDS+= R-zoo-[0-9]*:../../math/R-zoo 33TEST_DEPENDS+= R-coda-[0-9]*:../../math/R-coda
 34TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
 35#EST_DEPENDS+= R-drc-[0-9]*:
 36TEST_DEPENDS+= R-e1071-[0-9]*:../../math/R-e1071
 37#EST_DEPENDS+= R-emmeans-[0-9]*:
 38#EST_DEPENDS+= R-epiR-[0-9]*:
 39#EST_DEPENDS+= R-ergm-[0-9]*:
 40#EST_DEPENDS+= R-fixest-[0-9]*:
 41#EST_DEPENDS+= R-gam-[0-9]*:
 42#EST_DEPENDS+= R-gee-[0-9]*:
 43#EST_DEPENDS+= R-geepack-[0-9]*:
 44#EST_DEPENDS+= R-glmnet-[0-9]*:
 45#EST_DEPENDS+= R-glmnetUtils-[0-9]*:
 46#EST_DEPENDS+= R-gmm-[0-9]*:
43TEST_DEPENDS+= R-Hmisc-[0-9]*:../../misc/R-Hmisc 47TEST_DEPENDS+= R-Hmisc-[0-9]*:../../misc/R-Hmisc
 48#EST_DEPENDS+= R-irlba-[0-9]*:
 49#EST_DEPENDS+= R-joineRML-[0-9]*:
 50#EST_DEPENDS+= R-Kendall-[0-9]*:
 51TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
 52#EST_DEPENDS+= R-ks-[0-9]*:
 53#EST_DEPENDS+= R-Lahman-[0-9]*:
 54#EST_DEPENDS+= R-lavaan-[0-9]*:
 55#EST_DEPENDS+= R-leaps-[0-9]*:
 56#EST_DEPENDS+= R-lfe-[0-9]*:
 57#EST_DEPENDS+= R-lm.beta-[0-9]*:
 58TEST_DEPENDS+= R-lme4-[0-9]*:../../math/R-lme4
 59#EST_DEPENDS+= R-lmodel2-[0-9]*:
 60TEST_DEPENDS+= R-lmtest-[0-9]*:../../math/R-lmtest
 61#EST_DEPENDS+= R-lsmeans-[0-9]*:
 62TEST_DEPENDS+= R-maptools-[0-9]*:../../geography/R-maptools
 63#EST_DEPENDS+= R-margins-[0-9]*:
 64#EST_DEPENDS+= R-mclust-[0-9]*:../../wip/R-mclust
 65#EST_DEPENDS+= R-mediation-[0-9]*:
 66#EST_DEPENDS+= R-metafor-[0-9]*:
 67#EST_DEPENDS+= R-mfx-[0-9]*:
 68#EST_DEPENDS+= R-mlogit-[0-9]*:
 69#EST_DEPENDS+= R-modeldata-[0-9]*:
 70#EST_DEPENDS+= R-modeltests-[0-9]*:
 71#EST_DEPENDS+= R-muhaz-[0-9]*:
 72#EST_DEPENDS+= R-multcomp-[0-9]*:
 73#EST_DEPENDS+= R-network-[0-9]*:
 74#EST_DEPENDS+= R-orcutt-[0-9]*:
 75#EST_DEPENDS+= R-ordinal-[0-9]*:
 76#EST_DEPENDS+= R-plm-[0-9]*:
 77#EST_DEPENDS+= R-poLCA-[0-9]*:
 78TEST_DEPENDS+= R-psych-[0-9]*:../../math/R-psych
 79TEST_DEPENDS+= R-quantreg-[0-9]*:../../math/R-quantreg
 80TEST_DEPENDS+= R-rgeos-[0-9]*:../../geography/R-rgeos
 81TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
 82#EST_DEPENDS+= R-robust-[0-9]*:
 83TEST_DEPENDS+= R-robustbase-[0-9]*:../../math/R-robustbase
 84#EST_DEPENDS+= R-rsample-[0-9]*:
 85TEST_DEPENDS+= R-sandwich-[0-9]*:../../math/R-sandwich
 86TEST_DEPENDS+= R-sp-[0-9]*:../../math/R-sp
 87#EST_DEPENDS+= R-spdep-[0-9]*:
 88#EST_DEPENDS+= R-spatialreg-[0-9]*:
 89#EST_DEPENDS+= R-speedglm-[0-9]*:
44TEST_DEPENDS+= R-spelling-[0-9]*:../../textproc/R-spelling 90TEST_DEPENDS+= R-spelling-[0-9]*:../../textproc/R-spelling
 91TEST_DEPENDS+= R-survey-[0-9]*:../../math/R-survey
 92#EST_DEPENDS+= R-systemfit-[0-9]*:
 93TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
 94TEST_DEPENDS+= R-tseries-[0-9]*:../../finance/R-tseries
 95#EST_DEPENDS+= R-vars-[0-9]*:
 96TEST_DEPENDS+= R-zoo-[0-9]*:../../math/R-zoo
45 97
46USE_LANGUAGES= # none 98USE_LANGUAGES= # none
47 99
48.include "../../math/R/Makefile.extension" 100.include "../../math/R/Makefile.extension"
49.include "../../mk/bsd.pkg.mk" 101.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/math/R-broom/distinfo (expand / switch to unified diff)

--- pkgsrc/math/R-broom/distinfo 2021/10/26 10:55:24 1.3
+++ pkgsrc/math/R-broom/distinfo 2022/05/05 01:58:35 1.4
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.3 2021/10/26 10:55:24 nia Exp $ 1$NetBSD: distinfo,v 1.4 2022/05/05 01:58:35 mef Exp $
2 2
3BLAKE2s (R/broom_0.7.9.tar.gz) = 73195bbe7cd5ea7a2c7dba4364925b65a4fa10de93d3c633819544a068f993f1 3BLAKE2s (R/broom_0.8.0.tar.gz) = 86dca640cd540d430c4659e7eb60b30c14b0fc0a73821e6e07ddc32738f828ab
4SHA512 (R/broom_0.7.9.tar.gz) = 3346882452c311ef61a313a0311d5e30d65dafb8a27622d6bbdfe413e71087fb129999326931c98ffa6ddd5046ae5b2ac609622f31c3ab205ccfda4eac8c803e 4SHA512 (R/broom_0.8.0.tar.gz) = b9b0b7db1f151614f20fe42e7bfc34e1fc1aab1498e3280c67a530ba7972645694fb1638448827b14e70a56b9b743e51d7a3a7216c1f49067037ad837ce6e4fe
5Size (R/broom_0.7.9.tar.gz) = 631606 bytes 5Size (R/broom_0.8.0.tar.gz) = 640392 bytes