使用sliderInput复制selectInput图

时间:2017-09-12 07:09:21

标签: r shiny shinydashboard shinyapps

给定的脚本使用R更新了R shiny中的process_map()图     selectInput。我希望使用sliderInput复制相同的功能。

library(shiny)
library(shinydashboard)
library(bupaR)
library(edeaR)
library(eventdataR)
library(processmapR)
library(processmonitR)
library(xesreadR)
library(petrinetR)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(

selectInput("resources","Select the resource", 
c("r1","r2","r3","r4","r5"),selected = "r1",selectize = T, multiple = T)
),
dashboardBody(
uiOutput("ui")
))
server <- function(input, output) { 
output$ui <- renderUI({
r <- input$resources
tagList(filter_resource(patients,resources = r, reverse = F) %>% 
process_map())
})
}
shinyApp(ui, server)

enter image description here

1 个答案:

答案 0 :(得分:0)

我刚刚意识到滑块需要数字输入来更新绘图,因此合并了相同的

sliderInput("activities", "Select the activities", 0.1, 1.0, 0.1 )

它适用于我自己的问题。