Skip to content

Commit

Permalink
Another setback: non-standard scoping in tidyr
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Jan 30, 2018
1 parent 3533719 commit d8431e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/make.R
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@
#' # recipe_command = "R -q -e") # nolint
#' #
#' # make() respects tidy evaluation as implemented in the rlang package.
#' little_b <- "b"
#' # This workflow plan uses rlang's quasiquotation operator `!!`.
#' my_plan <- drake_plan(list = c(
#' little_b = "\"b\"",
#' letter = "!!little_b"
#' ))
#' my_plan
Expand Down
2 changes: 1 addition & 1 deletion vignettes/caution.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ Your workflow may depend on external packages such as
Running commands in your R console is not always exactly like running them with `make()`. That's because `make()` uses tidy evaluation as implemented in the [`rlang` package](https://github.com/tidyverse/rlang).

```{r demotidyeval}
little_b <- "b"
# This workflow plan uses rlang's quasiquotation operator `!!`.
my_plan <- drake_plan(list = c(
little_b = "\"b\"",
letter = "!!little_b"
))
my_plan
Expand Down
2 changes: 1 addition & 1 deletion vignettes/debug.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,9 @@ drake_build(target = "my_target", config = config)
Running commands in your R console is not always exactly like running them with `make()`. That's because `make()` uses tidy evaluation as implemented in the [`rlang` package](https://github.com/tidyverse/rlang).

```{r demotidyeval}
little_b <- "b"
# This workflow plan uses rlang's quasiquotation operator `!!`.
my_plan <- drake_plan(list = c(
little_b = "\"b\"",
letter = "!!little_b"
))
my_plan
Expand Down
2 changes: 1 addition & 1 deletion vignettes/quickstart.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -473,9 +473,9 @@ To enhance reproducibility beyond the scope of drake, you might consider [packra
Running commands in your R console is not always exactly like running them with `make()`. That's because `make()` uses tidy evaluation as implemented in the [`rlang` package](https://github.com/tidyverse/rlang).

```{r demotidyeval}
little_b <- "b"
# This workflow plan uses rlang's quasiquotation operator `!!`.
my_plan <- drake_plan(list = c(
little_b = "\"b\"",
letter = "!!little_b"
))
my_plan
Expand Down

0 comments on commit d8431e0

Please sign in to comment.