library(shiny)
library(capture)
ui <- fluidPage(
tags$h2("Capture PDF (loading) example"),
capture_pdf(
selector = "body",
filename = "all-page",
icon("camera"), "Take screenshot of all page",
scale = 2,
statusInputId = "loading"
),
tags$br(),
fluidRow(
column(
width = 4,
wellPanel(
tags$b("Parameters :"),
selectInput(
inputId = "loi",
label = "Law:",
choices = c("normal", "uniform", "exponential")
)
)
),
column(
width = 8,
tags$div(
id = "result-block",
tags$b("Results :"),
plotOutput(outputId = "plot"),
uiOutput(outputId = "mean"),
verbatimTextOutput(outputId = "raw")
)
)
)
)
server <- function(input, output, session) {
distrib_r <- reactive({
switch(
input$loi,
"normal" = rnorm(1000),
"uniform" = runif(1000),
"exponential" = rexp(1000)
)
})
output$plot <- renderPlot({
hist(distrib_r())
})
output$mean <- renderUI({
tags$p(tags$b("The mean is :"), round(mean(distrib_r()), 2))
})
output$raw <- renderPrint({
summary(distrib_r())
})
observeEvent(input$loading, {
if (identical(input$loading$status, "started")) {
showNotification(ui = "Capturing screenshot, please wait...")
}
if (identical(input$loading$status, "finished")) {
showNotification(ui = "Screenshot captured!", type = "message")
}
})
}
if (interactive())
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.