Skip to content

Commit 74f64f6

Browse files
committed
changes for 0.0.8 submission
1 parent e1f149d commit 74f64f6

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: rsample
22
Title: General Resampling Infrastructure
3-
Version: 0.0.7.9000
3+
Version: 0.0.8
44
Authors@R: c(
55
person(given = "Max", family = "Kuhn", email = "[email protected]", role = c("aut", "cre")),
66
person(given = "Fanny", family = "Chow", email = "[email protected]", role = c("aut")),
@@ -41,5 +41,5 @@ License: GPL-2
4141
Encoding: UTF-8
4242
VignetteBuilder: knitr
4343
LazyData: true
44-
RoxygenNote: 7.1.1
44+
RoxygenNote: 7.1.1.9000
4545
Roxygen: list(markdown = TRUE)

NEWS.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
# rsample (development version)
1+
# rsample 0.0.8
22

3-
* New `manual_rset()` for constructing rset objects manually from custom
4-
rsplits (tidymodels/tune#273).
3+
* New `manual_rset()` for constructing rset objects manually from custom rsplits (tidymodels/tune#273).
54

6-
* Three new time based resampling functions have been added: `sliding_window()`,
7-
`sliding_index()`, and `sliding_period()`, which have more flexibility than
8-
the pre-existing `rolling_origin()`.
5+
* Three new time based resampling functions have been added: `sliding_window()`, `sliding_index()`, and `sliding_period()`, which have more flexibility than the pre-existing `rolling_origin()`.
96

107
* Correct `alpha` parameter handling for bootstrap CI functions (#179, #184).
118

R/bootci.R

+2
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ pctl_single <- function(stats, alpha = 0.05) {
200200
#' doi:10.1017/CBO9780511802843
201201
#'
202202
#' @examples
203+
#' \donttest{
203204
#' library(broom)
204205
#' library(dplyr)
205206
#' library(purrr)
@@ -235,6 +236,7 @@ pctl_single <- function(stats, alpha = 0.05) {
235236
#' bootstraps(Sacramento, 1000, apparent = TRUE) %>%
236237
#' mutate(correlations = map(splits, rank_corr)) %>%
237238
#' int_pctl(correlations)
239+
#' }
238240
#' @export
239241
int_pctl <- function(.data, statistics, alpha = 0.05) {
240242

man/int_pctl.Rd

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

0 commit comments

Comments
 (0)