Skip to content

Commit

Permalink
Try message=False
Browse files Browse the repository at this point in the history
  • Loading branch information
mlondschien committed Mar 4, 2024
1 parent 9d725e5 commit d541952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vignettes/ricu.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ subset(mimic_demo$admissions, subject_id > 44000, language:ethnicity)

This syntax makes it possible to read row-subsets of *long* tables into memory with little memory overhead. While terseness of such an API does introduce potential ambiguity, this is mostly overcome by using the tidy eval framework provided by \pkg{rlang} \citep{wickham2020}:

```{r mimic-tidy, eval = srcs_avail("mimic_demo")}
```{r mimic-tidy, eval = srcs_avail("mimic_demo"), message = FALSE}
subject_id <- 44000:45000
subset(mimic_demo$admissions, .data$subject_id %in% .env$subject_id,
subject_id:dischtime)
Expand Down

0 comments on commit d541952

Please sign in to comment.