Browse Source

Implementar la pestaña para seleccionar orden y aparición de grupos.

master
marcelcosta 1 year ago
parent
commit
633fb5f953
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      invivos/app.R

+ 7
- 1
invivos/app.R

@ -375,9 +375,15 @@ server <- function(input, output) {
) %>% relocate(Group, .after = DayPostInoc) %>%
relocate(Cage, .before = Animal) %>%
arrange(DayPostInoc, Animal, Side)
if("Groups" %in% readxl::excel_sheets(input$file_analy$datapath)){
levels<-read.xlsx(input$file_analy$datapath, sheet = "Groups", colNames=F)[,1]
print(levels)
table$Group<-factor(table$Group, levels=levels)
table<-filter(table, !is.na(Group))
}
analysis$taula<-table
print(table)
}
})
output$cutoffUI<-renderUI({

Loading…
Cancel
Save