Render Dynamic Tabs with Dynamic Plots from loop in Shiny
问题 I'm trying to populate dynamically generated tabs with plots made from a loop but can't get the tabs to populate with all of the plots generated in the loop. shinyUI(pageWithSidebar( headerPanel("Dynamic number of plots"), sidebarPanel( ), mainPanel( # This is the dynamic UI for the plots uiOutput("IndividualPlots") ) )) server <- function(input, output) { output$IndividualPlots <- renderUI({ if (is.null(input$data_cqt0)) { return() } plot_content() shiny:::buildTabset( id = "t", lapply(1