是否可以在Shiny中的conditionalPanel中使用uiOutput?

时间:2015-08-05 18:10:01

标签: r shiny

我有一个非常基本的Shiny应用程序。

我正在使用renderUIuiOutput填充selectInput,其中可以选择日期。

但是,如果用户通过单选按钮选择了一个选项,我只希望显示selectInput

enter image description here

目前看来,app单选按钮没有任何效果。 (在这个阶段,如果事情正在发挥作用,点击'无日期'将意味着什么都没有被绘制。)

我确定问题在这里:

radioButtons('radio', 'Radio', choices=c('show_date', 'no_date'), selected = NULL, inline = FALSE),
  conditionalPanel(
    condition = "input.show_date == 'true'"
    uiOutput('fdate')
  ),

似乎无法在conditionalPanel中使用uiOutput。为什么呢?

APP.R

library(shiny)
library(ggplot2)
library(dplyr)
library(leaflet)


DF <- data.frame(lon=c(-120.6596156, -87.27751, -119.7725868, -124.2026, -117.1858759),  
                 lat=c(35.2827524, 33.83122, 36.7468422, 41.75575, 34.5008311), 
                 date=c('2014-03-14', '2014-01-11', '2013-11-22', '2012-08-23', '2013-08-23'),
                 city=c('San Luis Obispo', 'Jasper', 'Fresno', 'Crescent City', 'Apple Valley'), 
                 P1_name=c('John Doe', 'John Doe', 'John Doe', 'John Doe', 'Joe Blow'))

DF[, c('date', 'city', 'P1_name')] <- sapply(DF[, c('date', 'city', 'P1_name')], as.character)


server <- function(input, output, session) {

  output$fdate<-renderUI({
    selectInput('dates', 'Select date', choices=DF[which(DF$P1_name == input$person), ]$date, selectize = FALSE)
  })

  output$map<-renderLeaflet({

  DF <- filter(DF, P1_name==input$person, date==input$dates)    
    output$city <-renderText({c("Location:", DF$city)})


m <- leaflet() %>%
  addTiles() %>%  # Add default OpenStreetMap map tiles
  setView(lng=DF$lon, lat=DF$lat, zoom=5) %>%
  addMarkers(lng=DF$lon, lat=DF$lat, popup=DF$city)

  })

}

ui <- fluidPage(
  titlePanel("Testing Shiny"),
  sidebarLayout (
    sidebarPanel(

      selectInput('person', 'Select person', choices=unique(DF$P1_name), selectize = FALSE),

      radioButtons('radio', 'Radio', choices=c('show_date', 'no_date'), selected = NULL, inline = FALSE),
      conditionalPanel(
        condition = "input.show_date == 'true'"
        uiOutput('fdate')

      ),

#       uiOutput('fdate'),
      textOutput("city")

    ),

    mainPanel(
      leafletOutput('map')
    )  
  ))

shinyApp(ui = ui, server = server)

1 个答案:

答案 0 :(得分:5)

尝试

condition = "input.radio == 'show_date'",

代替