diff --git a/invivos/app.R b/invivos/app.R index 3cf65a3..68b66b1 100755 --- a/invivos/app.R +++ b/invivos/app.R @@ -34,7 +34,8 @@ ui <- fluidPage( mainPanel( plotOutput("firstPlot"), plotOutput("distPlot"), - tableOutput("distTable") + tableOutput("distTable"), + tableOutput("distTableAll") ) ), tabPanel("AnĂ¡lisis", @@ -214,6 +215,13 @@ server <- function(input, output) { df_sum } }) + output$distTableAll <- renderTable({ + observeEvent(dades$db, {}) + if (!is.null(dades$db)){ + df<-dades$db + df %>% arrange(group) + } + }) output$downloadData <- downloadHandler(