checkboxGroupInput
以下の簡単な例では、ボタンでリフレッシュした後、 からの入力の関数としてグラフィックがレンダリングされます。アプリの最初の起動時に、選択されたチェックボックスが selectInput によって提供されますs1
。
# ui.R
library(shiny)
shinyUI(fluidPage(
sidebarLayout(
sidebarPanel(
selectInput("s1", "Select 1", 1:5)
),
mainPanel(
plotOutput("myplot"),
uiOutput("chk.output"),
actionButton("refresh", "Refresh")
)
)
)
)
# server.R
library(shiny)
shinyServer(function(input, output, session) {
output$chk.output <- renderUI(checkboxGroupInput("Chk", label = "Choices", choices = list("1" = 1, "2" = 2, "3"= 3, "4"=4, "5"=5), selected = input$s1, inline = TRUE, width = "100%"))
selectGrEv <- eventReactive(input$refresh, {input$Chk}, ignoreNULL = FALSE)
output$myplot <- renderPlot({
plot(1:5, 1:5)
if (1 %in% selectGrEv()) {text(1,1, labels= 1, col = "red", pos = 3)}
if (2 %in% selectGrEv()) {text(2,2, labels= 2, col = "blue", pos = 3)}
if (3 %in% selectGrEv()) {text(3,3, labels= 3, col = "black", pos = 3)}
if (4 %in% selectGrEv()) {text(4,4, labels= 4, col = "orange", pos = 3)}
if (5 %in% selectGrEv()) {text(5,5, labels= 5, col = "green", pos = 1)}
})
})
ユーザーが変更するinput$s1
と、checkboxGroupInput
は更新されますが、正常なプロットは更新されません。[更新] ボタンをクリックするか、 を変更して、プロットを更新したいと思いますinput$s1
。
server.R
でカウンターを追加して変更しようとしましたreactiveValues
:
# server.R
library(shiny)
shinyServer(function(input, output, session) {
output$chk.output <- renderUI(checkboxGroupInput("Chk", label = "Choices", choices = list("1" = 1, "2" = 2, "3"= 3, "4"=4, "5"=5), selected = input$s1, inline = TRUE, width = "100%"))
values <- reactiveValues(cpt = 0) # Here code was added
observeEvent(input$s1, values$cpt <- values$cpt + 1) # Here code was added
selectGrEv <- eventReactive(input$refresh | values$cpt, {input$Chk}, ignoreNULL = FALSE) # Here code was modified
output$myplot <- renderPlot({
plot(1:5, 1:5)
if (1 %in% selectGrEv()) {text(1,1, labels= 1, col = "red", pos = 3)}
if (2 %in% selectGrEv()) {text(2,2, labels= 2, col = "blue", pos = 3)}
if (3 %in% selectGrEv()) {text(3,3, labels= 3, col = "black", pos = 3)}
if (4 %in% selectGrEv()) {text(4,4, labels= 4, col = "orange", pos = 3)}
if (5 %in% selectGrEv()) {text(5,5, labels= 5, col = "green", pos = 1)}
})
})
変更すると値values$cpt
が変更されますが、input$s1
変更されないselectGrEv()
ため、プロットは更新されません。
ユーザーも変更されたときに、レンダリングされたプロットを更新するにはどうすればよいinput$s1
ですか?