Skip to content

Commit

Permalink
extend requireNamespace with quietly = TRUE
Browse files Browse the repository at this point in the history
  • Loading branch information
m7pr committed Oct 4, 2024
1 parent 1646909 commit d7ff60c
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion vignettes/teal-modules-general.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ shinyApp(app$ui, app$server)

### Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("app"),
knitr::knit_code$get("shinyapp")
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-association-plot.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-cross-table.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-data-table.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-outliers-module.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-regression-plots.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-response-plot.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-scatterplot-matrix.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down
2 changes: 1 addition & 1 deletion vignettes/using-scatterplot.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))

## 5 - Try it out in Shinylive

```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive")}
```{r shinylive_url, echo = FALSE, results = 'asis', eval = requireNamespace("roxy.shinylive", quietly = TRUE)}
code <- paste0(c(
knitr::knit_code$get("library"),
knitr::knit_code$get("data"),
Expand Down

0 comments on commit d7ff60c

Please sign in to comment.