Solucionar bug en el completado de los grupos.
This commit is contained in:
+1
-1
@@ -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),
|
||||||
|
|||||||
Reference in New Issue
Block a user