0
次のデータセットがあります。UIをレンダリングするためのデータを含むリアクティブ関数を呼び出す
server <- function(input, output) {
abc<-reactive({
abc <- fread("dataset.csv")
})
output$choose_brand<-renderUI({
selectInput("brand","brand",names(abc()))
})
output$choose_model<-renderUI({
# the error is here.how can I call dataset
# abc and select a column from that dataset
selectInput("model","model",a()$input$brand)
})
}