#UI BEGINS
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
pickerInput("chosenplans", "Select State:",
#inputId = "stateList",
choices = as.character(unique(state_plan_data_filtered$state)),
options = list(
`actions-box` = TRUE,
`live-search` = TRUE),
multiple = FALSE,
selected = "Alabama"),
),
mainPanel()
),
)
每当我取消注释我的 inputId 时,我就无法运行我的 Shiny 应用程序,并且它给了我这个错误:
ChoiceOpt$style 中的错误:$ 运算符对原子向量无效
然而,inputId 理论上是pickerInput 的一个参数。为什么我不能明确地命名它?