|
@ -34,7 +34,8 @@ ui <- fluidPage( |
|
|
mainPanel( |
|
|
mainPanel( |
|
|
plotOutput("firstPlot"), |
|
|
plotOutput("firstPlot"), |
|
|
plotOutput("distPlot"), |
|
|
plotOutput("distPlot"), |
|
|
tableOutput("distTable") |
|
|
|
|
|
|
|
|
tableOutput("distTable"), |
|
|
|
|
|
tableOutput("distTableAll") |
|
|
) |
|
|
) |
|
|
), |
|
|
), |
|
|
tabPanel("Análisis", |
|
|
tabPanel("Análisis", |
|
@ -214,6 +215,13 @@ server <- function(input, output) { |
|
|
df_sum |
|
|
df_sum |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
|
|
|
output$distTableAll <- renderTable({ |
|
|
|
|
|
observeEvent(dades$db, {}) |
|
|
|
|
|
if (!is.null(dades$db)){ |
|
|
|
|
|
df<-dades$db |
|
|
|
|
|
df %>% arrange(group) |
|
|
|
|
|
} |
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
output$downloadData <- downloadHandler( |
|
|
output$downloadData <- downloadHandler( |
|
|
|
|
|
|
|
|