Implementar la pestaña para seleccionar orden y aparición de grupos.
This commit is contained in:
+7
-1
@@ -376,8 +376,14 @@ server <- function(input, output) {
|
|||||||
relocate(Cage, .before = Animal) %>%
|
relocate(Cage, .before = Animal) %>%
|
||||||
arrange(DayPostInoc, Animal, Side)
|
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
|
analysis$taula<-table
|
||||||
print(table)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
output$cutoffUI<-renderUI({
|
output$cutoffUI<-renderUI({
|
||||||
|
|||||||
Reference in New Issue
Block a user