-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore options when existing vignettes.
- Loading branch information
1 parent
2afc2ab
commit f2d21ef
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ library(magrittr) | |
library(cohortBuilder) | ||
library(shinyCohortBuilder) | ||
set.seed(123) | ||
old_opts <- options() | ||
options(tibble.width = Inf) | ||
iris <- tibble::as.tibble(iris) | ||
options("tibble.print_max" = 5) | ||
|
@@ -147,3 +148,7 @@ Special thanks to: | |
|
||
In a case you found any bugs, have feature request or general question please file an issue at the package [Github](https://github.com/r-world-devs/shinyCohortBuilder/issues). | ||
You may also contact the package author directly via email at [[email protected]](mailto:[email protected]). | ||
|
||
```{r, include = FALSE} | ||
options(old_opts) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters