В соответствии с @bretauv shinyjs
имеет функцию onclick
, так что вы должны сделать следующее, обратите внимание, что вы должны предоставить участки с распределениями. Я просто делаю изменения с обычным
library(shiny)
library(shinyjs)
ui <- fluidPage(
useShinyjs(), # Set up shinyjs
column(3,
div(id = "01", style = "cursor:pointer; height: 300px; width: 300px; text-align: center; background-color: green", HTML("01")),
div(id = "02", style = "cursor:pointer; height: 300px; width: 300px; text-align: center; background-color: blue", HTML("02")),
div(id = "03", style = "cursor:pointer; height: 300px; width: 300px; text-align: center; background-color: red", HTML("03")),
),
column(9,
plotOutput("plot")
)
)
v <- reactiveValues()
normal <- function(v){
v$x <- seq(-10, 10, by = .1)
v$y <- rnorm(v$x)
v$title <- "Normal distribution"
}
tdistr <- function(v){
v$x <- seq(-10, 10, by = .1)
v$y <- rnorm(v$x)
v$title <- "T-distribution"
}
geddistr <- function(v){
v$x <- seq(-10, 10, by = .1)
v$y <- rnorm(v$x)
v$title <- "GED distribution"
}
server = function(input, output,session) {
observe({
onclick("01",normal(v))
onclick("02",tdistr(v))
onclick("03",geddistr(v))
})
output$plot <- renderPlot({
req(v$x)
plot(v$x,v$y,main = v$title)
})
}
shinyApp(ui, server)