我知道這是一個基本的問題,但我真的很新的閃亮......SelectInput如果循環情節[R閃亮
我怎麼能結合plotlyOutput與來自SelectInput框中如果循環?
我的意思是這樣的:
vars <- data.frame(location = c("AP LIGUA",
"ESCUELA CHALACO"),
lat = c(-32.45,
-32.183333),
lon = c(-71.216667,
-70.802222)
)
selectInput(inputId = "myLocations", label = "Estación",
choices = vars$location),
if (vars$location=="AP LIGUA") {
plotlyOutput("apligua", height = "100%")
fluidRow(
DT::dataTableOutput("table")
)
}
但它不工作。
我的猜測是:用'input $ myLocations =='AP LIGUA「'替換'vars $ location ==」AP LIGUA「'。 – Axeman
「錯誤:找不到對象'輸入'」 – NUForever