나는이 기본적인 질문을 알고,하지만 난 빛나는에서 정말 새로운 해요 ...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")
)
}
는하지만이 작동하지 않습니다
나는 같은 것을 의미한다.
제 생각에는'vars $ location == "AP LIGUA"'를'$ myLocations == "AP LIGUA"'로 바꾸십시오. – Axeman
"오류 : 개체 '입력'을 찾을 수 없습니다." – NUForever