尝试创建一个具有下拉菜单的闪亮应用程序,允许您选择作为保存到全局环境的列表的子元素的图。
这些图位于列表中每个元素的第二个子元素中
e.g. list = ([[dataframe1, plot1], [dataframe2, plot2], etc])
我正在尝试创建的应用程序由以下人员提供:
choices = paste0("list[[1]][[", 1:2, "]]")
ui <- shinyUI(fluidPage(selectInput("selectPlot",
"Choose desired country",
choices),
plotlyOutput("plot")))
server <- shinyServer(function(input,output){
output$plot <- renderPlotly({
return(get(input$selectPlot))
})
})
shinyApp(ui,server)
但是,没有显示任何图,并且我收到以下错误:**警告:获取错误:找不到对象'anom[[1]][[1]]'*
如果我将地块单独保存到环境中,那么这种方法有效。但是,我正在尝试通过这个已经存在的列表来访问这些图!
添加可重现的示例:
ds1 <- data.frame(sample(1:10, 10), sample(11:20, 10))
ds2 <- data.frame(sample(1:10, 10), sample(11:20, 10))
p1 = plot_ly(x = ~ds1[[1]], y = ~ds1[[2]]) %>% add_markers()
p2 = plot_ly(x = ~ds2[[1]], y = ~ds2[[2]]) %>% add_markers()
l = list(list(ds1, p1), list(ds2, p2))
#want to access p1 and p2 from within the list to create drop down menu graph
choices.p = paste0("l[[1]][[", 1:2, "]]")
ui <- shinyUI(fluidPage(selectInput("selectPlot",
"Choose desired country",
choices.p),
plotlyOutput("plot")))
server <- shinyServer(function(input,output){
output$plot <- renderPlotly({
return(get(input$selectPlot))
})
})
shinyApp(ui,server)