Skip to content

Commit e66048d

Browse files
authored
RC 0.0.9 (#221)
* Load modeldata, to do away with NOTEs on CRAN * Polish NEWS * Update URLs, rebuild README * Run revdepchecks * Add CRAN comments * Increment version number * Update maintainer
1 parent ef458a5 commit e66048d

11 files changed

+71
-580
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ rsample_hex_thumb.png
1818
^README\.Rmd$
1919
^CODE_OF_CONDUCT\.md$
2020
^\.github$
21+
^cran-comments\.md$

DESCRIPTION

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
Package: rsample
22
Title: General Resampling Infrastructure
3-
Version: 0.0.8.9001
3+
Version: 0.0.9
44
Authors@R: c(
5-
person(given = "Max", family = "Kuhn", email = "[email protected]", role = c("aut", "cre")),
6-
person(given = "Fanny", family = "Chow", email = "[email protected]", role = c("aut")),
7-
person(given = "Hadley", family = "Wickham", email = "[email protected]", role = c("aut")),
5+
person(given = "Julia", family = "Silge", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-3671-836X")),
6+
person(given = "Fanny", family = "Chow", email = "[email protected]", role = c("aut")),
7+
person(given = "Max", family = "Kuhn", email = "[email protected]", role = c("aut")),
8+
person(given = "Hadley", family = "Wickham", email = "[email protected]", role = c("aut")),
89
person("RStudio", role = "cph"))
9-
Maintainer: Max Kuhn <max@rstudio.com>
10+
Maintainer: Julia Silge <julia.silge@rstudio.com>
1011
Description: Classes and functions to create and summarize different types of resampling objects (e.g. bootstrap, cross-validation).
1112
Imports:
1213
dplyr (>= 1.0.0),

NEWS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# rsample (development version)
1+
# rsample 0.0.9
22

33
* New `rset_reconstruct()`, a developer tool to ease creation of new rset subclasses (#210).
44

@@ -8,13 +8,13 @@
88

99
* `rset` objects now contain a "fingerprint" attribute that can be used to check to see if the same object uses the same resamples.
1010

11-
* The `reg_intervals()` function is a convenience function for `lm()`, `glm()`, `survreg()`, and `coxph()` models.
11+
* The `reg_intervals()` function is a convenience function for `lm()`, `glm()`, `survreg()`, and `coxph()` models (#206).
1212

1313
* A few internal functions were exported so that `rsample`-adjacent packages can use the same underlying code.
1414

15-
* The `obj_sum()` method for `rsplit` objects was updated.
15+
* The `obj_sum()` method for `rsplit` objects was updated (#215).
1616

17-
* Changed the inheritance structure for `rsplit` objects from specific to general and simplified the methods for the `complement()` generic.
17+
* Changed the inheritance structure for `rsplit` objects from specific to general and simplified the methods for the `complement()` generic (#216).
1818

1919

2020
# rsample 0.0.8

R/boot.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
#' bootstraps(mtcars, times = 2, apparent = TRUE)
3737
#'
3838
#' library(purrr)
39-
#' data(wa_churn, package = "modeldata")
39+
#' library(modeldata)
40+
#' data(wa_churn)
4041
#'
4142
#' set.seed(13)
4243
#' resample1 <- bootstraps(wa_churn, times = 3)

README.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ install_dev("rsample")
8484

8585
This project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
8686

87-
- For questions and discussions about tidymodels packages, modeling, and machine learning, please [post on RStudio Community](https://rstd.io/tidymodels-community).
87+
- For questions and discussions about tidymodels packages, modeling, and machine learning, please [post on RStudio Community](https://community.rstudio.com/new-topic?category_id=15&tags=tidymodels,question).
8888

8989
- If you think you have encountered a bug, please [submit an issue](https://github.com/tidymodels/parsnip/issues).
9090

91-
- Either way, learn how to create and share a [reprex](https://rstd.io/reprex) (a minimal, reproducible example), to clearly communicate about your code.
91+
- Either way, learn how to create and share a [reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html) (a minimal, reproducible example), to clearly communicate about your code.
9292

9393
- We welcome contributions, including typo corrections, bug fixes, and feature requests! If you have never made a pull request to an R package before, `rsample` is an excellent place to start. Find an [issue](https://github.com/tidymodels/rsample/issues/) with the **help wanted `r emo::ji("heart")`** tag, comment that you'd like to take it on, and we'll help you get started.
9494

README.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ resamples and corresponding classes for their analysis. The goal is to
1919
have a modular set of methods that can be used across different R
2020
packages for:
2121

22-
- traditional resampling techniques for estimating the sampling
22+
- traditional resampling techniques for estimating the sampling
2323
distribution of a statistic and
24-
- estimating model performance using a holdout set
24+
- estimating model performance using a holdout set
2525

2626
The scope of `rsample` is to provide the basic building blocks for
2727
creating and analyzing resamples of a data set but does not include code
@@ -85,24 +85,25 @@ This project is released with a [Contributor Code of
8585
Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html).
8686
By contributing to this project, you agree to abide by its terms.
8787

88-
- For questions and discussions about tidymodels packages, modeling,
88+
- For questions and discussions about tidymodels packages, modeling,
8989
and machine learning, please [post on RStudio
90-
Community](https://rstd.io/tidymodels-community).
90+
Community](https://community.rstudio.com/new-topic?category_id=15&tags=tidymodels,question).
9191

92-
- If you think you have encountered a bug, please [submit an
92+
- If you think you have encountered a bug, please [submit an
9393
issue](https://github.com/tidymodels/parsnip/issues).
9494

95-
- Either way, learn how to create and share a
96-
[reprex](https://rstd.io/reprex) (a minimal, reproducible example),
97-
to clearly communicate about your code.
95+
- Either way, learn how to create and share a
96+
[reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html)
97+
(a minimal, reproducible example), to clearly communicate about your
98+
code.
9899

99-
- We welcome contributions, including typo corrections, bug fixes, and
100-
feature requests\! If you have never made a pull request to an R
100+
- We welcome contributions, including typo corrections, bug fixes, and
101+
feature requests! If you have never made a pull request to an R
101102
package before, `rsample` is an excellent place to start. Find an
102103
[issue](https://github.com/tidymodels/rsample/issues/) with the
103104
**help wanted ❤️** tag, comment that you’d like to take it on, and
104105
we’ll help you get started.
105106

106-
- Check out further details on [contributing guidelines for tidymodels
107+
- Check out further details on [contributing guidelines for tidymodels
107108
packages](https://www.tidymodels.org/contribute/) and [how to get
108109
help](https://www.tidymodels.org/help/).

cran-comments.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Release Summary
2+
3+
This is the 8th CRAN release of rsample. This release fixes bugs, updates the inheritance structure for rsample objects, and adds developer-friendly tools for package developers or analysts depending on rsample. This release also marks a **change in maintainer** from Max Kuhn <[email protected]>, to Julia Silge <[email protected]>.
4+
5+
## Test environments
6+
7+
* local macOS install: release
8+
* macOS 10.15.7 (on GitHub actions): release
9+
* windows server 2019 10.0.17763 (on GitHub actions): oldrel, release
10+
* ubuntu 16.04 (on GitHub actions): oldrel, release, devel
11+
* win-builder: release, devel
12+
13+
## R CMD check results
14+
15+
0 errors | 0 warnings | 0 notes
16+
17+
## revdepcheck results
18+
19+
We checked 23 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
20+
21+
* We saw 0 new problems
22+
* We failed to check 0 packages

man/bootstraps.Rd

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

revdep/README.md

+12-61
Original file line numberDiff line numberDiff line change
@@ -3,70 +3,21 @@
33
|field |value |
44
|:--------|:----------------------------|
55
|version |R version 4.0.3 (2020-10-10) |
6-
|os |Ubuntu 18.04.5 LTS |
7-
|system |x86_64, linux-gnu |
8-
|ui |X11 |
9-
|language |en |
10-
|collate |en_GB.UTF-8 |
11-
|ctype |en_GB.UTF-8 |
12-
|tz |Europe/London |
13-
|date |2021-02-03 |
6+
|os |macOS Mojave 10.14.6 |
7+
|system |x86_64, darwin17.0 |
8+
|ui |RStudio |
9+
|language |(EN) |
10+
|collate |en_US.UTF-8 |
11+
|ctype |en_US.UTF-8 |
12+
|tz |America/Denver |
13+
|date |2021-02-16 |
1414

1515
# Dependencies
1616

17-
|package |old |new |Δ |
18-
|:----------|:------|:----------|:--|
19-
|rsample |0.0.8 |0.0.8.9001 |* |
20-
|assertthat |0.2.1 |0.2.1 | |
21-
|cli |2.3.0 |2.3.0 | |
22-
|cpp11 |0.2.6 |0.2.6 | |
23-
|crayon |1.4.0 |1.4.0 | |
24-
|digest |0.6.27 |0.6.27 | |
25-
|dplyr |1.0.4 |1.0.4 | |
26-
|ellipsis |0.3.1 |0.3.1 | |
27-
|fansi |0.4.2 |0.4.2 | |
28-
|furrr |0.2.2 |0.2.2 | |
29-
|future |1.21.0 |1.21.0 | |
30-
|generics |0.1.0 |0.1.0 | |
31-
|globals |0.14.0 |0.14.0 | |
32-
|glue |1.4.2 |1.4.2 | |
33-
|lifecycle |0.2.0 |0.2.0 | |
34-
|listenv |0.8.0 |0.8.0 | |
35-
|magrittr |2.0.1 |2.0.1 | |
36-
|modeldata |0.1.0 |NA |* |
37-
|parallelly |1.23.0 |1.23.0 | |
38-
|pillar |1.4.7 |1.4.7 | |
39-
|pkgconfig |2.0.3 |2.0.3 | |
40-
|purrr |0.3.4 |0.3.4 | |
41-
|R6 |2.5.0 |2.5.0 | |
42-
|rlang |0.4.10 |0.4.10 | |
43-
|slider |0.1.5 |0.1.5 | |
44-
|tibble |3.0.6 |3.0.6 | |
45-
|tidyr |1.1.2 |1.1.2 | |
46-
|tidyselect |1.1.0 |1.1.0 | |
47-
|utf8 |1.1.4 |1.1.4 | |
48-
|vctrs |0.3.6 |0.3.6 | |
49-
|warp |0.2.0 |0.2.0 | |
17+
|package |old |new |Δ |
18+
|:-------|:-----|:-----------|:--|
19+
|rsample |0.0.8 |0.0.8.9001 |* |
20+
|pillar |NA |1.4.99.9006 |* |
5021

5122
# Revdeps
5223

53-
## Failed to check (15)
54-
55-
|package |version |error |warning |note |
56-
|:-------------|:-------|:-----|:-------|:----|
57-
|baguette |? | | | |
58-
|broom |? | | | |
59-
|butcher |? | | | |
60-
|embed |? | | | |
61-
|MachineShop |? | | | |
62-
|probably |? | | | |
63-
|psfmi |? | | | |
64-
|recipes |? | | | |
65-
|solitude |? | | | |
66-
|tfdatasets |? | | | |
67-
|tidymodels |? | | | |
68-
|tidyposterior |? | | | |
69-
|tidyrules |? | | | |
70-
|timetk |? | | | |
71-
|tune |? | | | |
72-

revdep/cran.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## revdepcheck results
2+
3+
We checked 23 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
4+
5+
* We saw 0 new problems
6+
* We failed to check 0 packages
7+

0 commit comments

Comments
 (0)