Skip to content

Commit

Permalink
docs: update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindhebbali committed May 30, 2023
1 parent fe2050e commit 3fd08c0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ server <- function(input, output, session) {
output$plot1 <- renderPlot({
input$render
Sys.sleep(3)
plot(cars)
hist(mtcars$mpg)
})
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ server <- function(input, output, session) {
output$plot1 <- renderPlot({
input$render
Sys.sleep(3)
plot(cars)
hist(mtcars$mpg)
})

}
Expand Down
4 changes: 2 additions & 2 deletions docs/articles/standby.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 10 additions & 7 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vignettes/standby.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ server <- function(input, output, session) {
output$plot1 <- renderPlot({
input$render
Sys.sleep(3)
plot(cars)
hist(mtcars$mpg)
})
}
Expand Down

0 comments on commit 3fd08c0

Please sign in to comment.