Browse Source

Solucionar bug en el completado de los grupos.

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

+ 1
- 1
invivos/app.R

@ -362,7 +362,7 @@ server <- function(input, output) {
table_group<-merge( table_group<-merge(
table %>% select(Animal, Group) %>% unique() %>% group_by(Animal) %>% count(), table %>% select(Animal, Group) %>% unique() %>% group_by(Animal) %>% count(),
table %>% select(Animal, Group) %>% unique() table %>% select(Animal, Group) %>% unique()
) %>% filter(n > 1 & (!is.na(Group) | Group != "")) %>% select(-n)
) %>% filter(!is.na(Group) | Group != "") %>% select(-n)
table<-merge( table<-merge(
table %>% select(-Group), table %>% select(-Group),

Loading…
Cancel
Save