diff --git a/vignettes/using-association-plot.Rmd b/vignettes/using-association-plot.Rmd index 84dcb31e7..dc4660cb8 100644 --- a/vignettes/using-association-plot.Rmd +++ b/vignettes/using-association-plot.Rmd @@ -2,7 +2,6 @@ title: "Using association plot" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using association plot} %\VignetteEngine{knitr::rmarkdown} @@ -297,7 +296,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-bivariate-plot.Rmd b/vignettes/using-bivariate-plot.Rmd index 3c94cd857..518692b38 100644 --- a/vignettes/using-bivariate-plot.Rmd +++ b/vignettes/using-bivariate-plot.Rmd @@ -2,7 +2,6 @@ title: "Using bivariate plot" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using bivariate plot} %\VignetteEngine{knitr::rmarkdown} @@ -623,7 +622,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-cross-table.Rmd b/vignettes/using-cross-table.Rmd index ab21b88c0..fd0c98b6d 100644 --- a/vignettes/using-cross-table.Rmd +++ b/vignettes/using-cross-table.Rmd @@ -2,7 +2,6 @@ title: "Using cross table" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using cross table} %\VignetteEngine{knitr::rmarkdown} @@ -139,7 +138,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-data-table.Rmd b/vignettes/using-data-table.Rmd index 3d0cc2516..c1a34f450 100644 --- a/vignettes/using-data-table.Rmd +++ b/vignettes/using-data-table.Rmd @@ -2,7 +2,6 @@ title: "Using data table" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using data table} %\VignetteEngine{knitr::rmarkdown} @@ -110,7 +109,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-outliers-module.Rmd b/vignettes/using-outliers-module.Rmd index 59e745bde..9ed56f0ad 100644 --- a/vignettes/using-outliers-module.Rmd +++ b/vignettes/using-outliers-module.Rmd @@ -2,7 +2,6 @@ title: "Using outliers module" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using outliers module} %\VignetteEngine{knitr::rmarkdown} @@ -191,7 +190,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-regression-plots.Rmd b/vignettes/using-regression-plots.Rmd index ea17dcee5..93d901012 100644 --- a/vignettes/using-regression-plots.Rmd +++ b/vignettes/using-regression-plots.Rmd @@ -2,7 +2,6 @@ title: "Using regression plots" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using regression plots} %\VignetteEngine{knitr::rmarkdown} @@ -270,7 +269,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-response-plot.Rmd b/vignettes/using-response-plot.Rmd index 7eef800d9..415f095f7 100644 --- a/vignettes/using-response-plot.Rmd +++ b/vignettes/using-response-plot.Rmd @@ -2,7 +2,6 @@ title: "Using response plot" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using response plot} %\VignetteEngine{knitr::rmarkdown} @@ -379,7 +378,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-scatterplot-matrix.Rmd b/vignettes/using-scatterplot-matrix.Rmd index c462e68a8..befb643fb 100644 --- a/vignettes/using-scatterplot-matrix.Rmd +++ b/vignettes/using-scatterplot-matrix.Rmd @@ -2,7 +2,6 @@ title: "Using scatterplot matrix" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using scatterplot matrix} %\VignetteEngine{knitr::rmarkdown} @@ -157,7 +156,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ``` diff --git a/vignettes/using-scatterplot.Rmd b/vignettes/using-scatterplot.Rmd index 4ae42895c..58e42ef92 100644 --- a/vignettes/using-scatterplot.Rmd +++ b/vignettes/using-scatterplot.Rmd @@ -2,7 +2,6 @@ title: "Using scatterplot" author: "NEST CoreDev" output: rmarkdown::html_vignette -runtime: shiny vignette: > %\VignetteIndexEntry{Using scatterplot} %\VignetteEngine{knitr::rmarkdown} @@ -377,7 +376,7 @@ app <- init( A simple `shiny::shinyApp()` call will let you run the app. Note that app is only displayed when running this code inside an `R` session. -```{r, echo=TRUE, results="hide"} +```{r, echo=TRUE, results="hide", eval=base::interactive()} shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024)) ```