Skip to content

Commit bf13ab7

Browse files
committed
checks pass
1 parent 4c030e4 commit bf13ab7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

R/epi_ahead.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@
3939
#' @export
4040
#'
4141
#' @examples
42-
#' tib <- tibble(
42+
#' tib <- tibble::tibble(
4343
#' x = 1:5, y = 1:5,
4444
#' time_value = seq(as.Date("2020-01-01"), by = 1, length.out = 5),
4545
#' geo_value = "ca"
4646
#' ) %>% epiprocess::as_epi_df()
4747
#'
4848
#' library(recipes)
49-
#' recipe(y ~ x., data = tib) %>%
49+
#' epi_recipe(y ~ x, data = tib) %>%
5050
#' step_epi_lag(x, lag = 2:3) %>%
5151
#' step_epi_ahead(y, ahead = 1) %>%
52-
#' prep(df) %>%
53-
#' bake(df)
52+
#' prep(tib) %>%
53+
#' bake(tib)
5454
step_epi_ahead <-
5555
function(recipe,
5656
...,

man/step_epi_ahead.Rd

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)