Skip to content
This repository was archived by the owner on Nov 19, 2022. It is now read-only.

Commit 2622e2a

Browse files
cran submission 0.4.1
1 parent fb2b8fe commit 2622e2a

9 files changed

+51
-43
lines changed

CRAN-RELEASE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
This package was submitted to CRAN on 2021-02-19.
2-
Once it is accepted, delete this file and tag the release (commit 485fe46).
1+
This package was submitted to CRAN on 2021-02-20.
2+
Once it is accepted, delete this file and tag the release (commit fb2b8fe).

DESCRIPTION

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: broomExtra
33
Title: Enhancements for 'broom' and 'easystats' Package Families
4-
Version: 4.2.0.9000
4+
Version: 4.2.1
55
Authors@R:
66
person(given = "Indrajeet",
77
family = "Patil",
@@ -31,8 +31,7 @@ Imports:
3131
parameters (>= 0.11.0),
3232
performance (>= 0.7.0),
3333
rlang,
34-
tibble,
35-
lifecycle
34+
tibble
3635
Suggests:
3736
generics,
3837
lavaan,
@@ -48,4 +47,3 @@ Roxygen: list(markdown = TRUE, roclets = c("rd", "namespace", "collate", "pkgapi
4847
RoxygenNote: 7.1.1.9001
4948
Config/testthat/edition: 3
5049
Config/testthat/parallel: true
51-
Config/testthat/start-first: watcher, parallel*

NEWS.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# broomExtra 4.2.0.9000
1+
# broomExtra 4.2.1
2+
3+
- Removes `lifecycle` from `Imports` to get rid of `NOTE` in CRAN daily checks.
24

35
# broomExtra 4.2.0
46

R/generics.R

+25-11
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
#' @title Retrieve tidy dataframe if it exists.
22
#' @name tidy
3-
#' @description Checks if a `tidy` method exits for a given object, either in
4-
#' `broom` or in `broom.mixed`. If it does, it turn an object into a tidy
5-
#' tibble, if not, return a `NULL`. In this case, you can try the
6-
#' [broomExtra::tidy_parameters()] function.
3+
#'
4+
#' @description
5+
#'
6+
#' \Sexpr[results=rd, stage=render]{rlang:::lifecycle("stable")}
7+
#'
8+
#' Checks if a `tidy` method exits for a given object, either in `broom` or in
9+
#' `broom.mixed`. If it does, it turn an object into a tidy tibble, if not,
10+
#' return a `NULL`. In this case, you can try the
11+
#' [broomExtra::tidy_parameters()] function.
712
#'
813
#' @inheritParams generics::tidy
914
#'
@@ -36,10 +41,15 @@ tidy <- function(x, ...) {
3641

3742
#' @title Retrieve model summary dataframe if it exists.
3843
#' @name glance
39-
#' @description Check if a `glance` method exits for a given object, either in
40-
#' `broom` or in `broom.mixed`. If it does, return the model summary
41-
#' dataframe, if not, return a `NULL`. In this case, you can try the
42-
#' [broomExtra::glance_performance()] function.
44+
#'
45+
#' @description
46+
#'
47+
#' \Sexpr[results=rd, stage=render]{rlang:::lifecycle("stable")}
48+
#'
49+
#' Checks if a `glance` method exits for a given object, either in `broom` or in
50+
#' `broom.mixed`. If it does, return the model summary dataframe, if not, return
51+
#' a `NULL`. In this case, you can try the [broomExtra::glance_performance()]
52+
#' function.
4353
#'
4454
#' @inheritParams generics::glance
4555
#'
@@ -71,9 +81,13 @@ glance <- function(x, ...) {
7181

7282
#' @title Retrieve augmented dataframe if it exists.
7383
#' @name augment
74-
#' @description Check if a `augment` method exits for a given object, either in
75-
#' `broom` or in `broom.mixed`. If it does, return the model summary
76-
#' dataframe, if not, return a `NULL`.
84+
#' @description
85+
#'
86+
#' \Sexpr[results=rd, stage=render]{rlang:::lifecycle("stable")}
87+
#'
88+
#' Checks if a `augment` method exits for a given object, either in `broom` or
89+
#' in `broom.mixed`. If it does, return the model summary dataframe, if not,
90+
#' return a `NULL`.
7791
#'
7892
#' @inheritParams generics::augment
7993
#'

codemeta.json

+2-14
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"issueTracker": "https://github.com/IndrajeetPatil/broomExtra/issues",
1616
"license": "https://spdx.org/licenses/GPL-3.0",
17-
"version": "4.2.0.9000",
17+
"version": "4.2.1",
1818
"programmingLanguage": {
1919
"@type": "ComputerLanguage",
2020
"name": "R",
@@ -230,18 +230,6 @@
230230
"url": "https://cran.r-project.org"
231231
},
232232
"sameAs": "https://CRAN.R-project.org/package=tibble"
233-
},
234-
{
235-
"@type": "SoftwareApplication",
236-
"identifier": "lifecycle",
237-
"name": "lifecycle",
238-
"provider": {
239-
"@id": "https://cran.r-project.org",
240-
"@type": "Organization",
241-
"name": "Comprehensive R Archive Network (CRAN)",
242-
"url": "https://cran.r-project.org"
243-
},
244-
"sameAs": "https://CRAN.R-project.org/package=lifecycle"
245233
}
246234
],
247235
"readme": "https://github.com/IndrajeetPatil/broomExtra/blob/master/README.md",
@@ -265,5 +253,5 @@
265253
}
266254
],
267255
"funder": {},
268-
"fileSize": "1524.606KB"
256+
"fileSize": "1524.536KB"
269257
}

cran-comments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
0 errors | 0 warnings | 0 note
1212

13-
- The tests are no longer skipped on `CRAN`.
13+
- Removes `lifecycle` from `Imports` to get rid of `NOTE` in CRAN daily checks.
1414

1515
## revdepcheck results
1616

man/augment.Rd

+5-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/glance.Rd

+6-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/tidy.Rd

+5-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)