Skip to content

Commit e7db92b

Browse files
committed
checks pass
1 parent 8a24d7a commit e7db92b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

R/dist_quantiles.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ nested_quantiles <- function(x) {
155155
#' @examples
156156
#' d1 <- c(dist_quantiles(1:3, 1:3 / 4), dist_quantiles(2:4, 1:3 / 4))
157157
#' d2 <- c(dist_quantiles(2:4, 2:4 / 5), dist_quantiles(3:5, 2:4 / 5))
158-
#' tib <- tibble(g = c("a", "b"), d1 = d1, d2 = d2)
158+
#' tib <- tibble::tibble(g = c("a", "b"), d1 = d1, d2 = d2)
159159
#'
160160
#' pivot_quantiles(tib, c("d1", "d2"))
161161
#' pivot_quantiles(tib, tidyselect::starts_with("d"))

man/pivot_quantiles.Rd

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

tests/testthat/test-pivot_quantiles.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test_that("quantile pivotting behaves", {
2-
tib <- tibble(a = 1:5, b = 6:10)
2+
tib <- tibble::tibble(a = 1:5, b = 6:10)
33
expect_error(pivot_quantiles(tib, a))
44
tib$c <- rep(dist_normal(), 5)
55
expect_error(pivot_quantiles(tib, c))
@@ -17,7 +17,7 @@ test_that("quantile pivotting behaves", {
1717

1818
d1 <- c(dist_quantiles(1:3, 1:3 / 4), dist_quantiles(2:4, 1:3 / 4))
1919
d2 <- c(dist_quantiles(2:4, 2:4 / 5), dist_quantiles(3:5, 2:4 / 5))
20-
tib <- tibble(g = c("a", "b"), d1 = d1, d2 = d2)
20+
tib <- tibble::tibble(g = c("a", "b"), d1 = d1, d2 = d2)
2121

2222

2323
expect_length(pivot_quantiles(tib, c("d1", "d2")), 7L)

0 commit comments

Comments
 (0)