我想顯示我的閃亮應用的內容取決於多選輸入的選定項目的數量。到目前爲止,我無法弄清楚做這件事的條件應該是什麼樣子。閃亮使用條件面板中選擇條件的數量
library(shiny)
shinyUI(pageWithSidebar(
headerPanel("select and conditional panel"),
sidebarPanel(
selectInput(inputId = "someSelect", multiple=TRUE, label = "Genes:", choices = colnames(someDataFrame), selected = c("ESR1", "CD44")),
),
mainPanel(
conditionalPanel(
condition="length(input.someSelect.selected) > 2",
tabsetPanel(
...
)
)
)
))
這是我的問題最簡單的辦法。 – mlist