📜  registerShinyDebugHook(params) 中的错误:尝试在 NULL 上设置属性 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:09.845000             🧑  作者: Mango

代码示例1
ui <- fluidPage(
  pageWithSidebar(
    headerPanel("Analysis"),

    sidebarPanel(
      sliderInput("ABC", "ABC Range",
                  min = 0, max = 400, value = c(0,400), step = 10),
      sliderInput("DEF", "DEF Range",
                  min = 0, max = 400, value = c(0,400), step = 10),
      pickerInput("HIJ","HIJ",
                  choices = HIJ.unique,
                  options = list('actions-box' = TRUE),
                  multiple = TRUE),
      pickerInput("Year","Year",
                  choices = Year.unique,
                  options = list('actions-box' = TRUE),
                  multiple = TRUE)
    ),

    mainPanel(
      plotOutput("myplot")
  ) 
 ) 
)