Hi,
I have a data frame and I can't seem to apply a group by over values as it doesn't do it at all.
df_Agg_Popular_Date %>%
dplyr::group_by(Day)
## # Groups: Day [30]
## Day
## <int>
## 1 17
## 2 25
## 3 1
## 4 19
## 5 16
## 6 20
## 7 24
## 8 30
## 9 2
## 10 16
16 is shown twice here which means the group by hasn't been executed successfully.
I've looked on the internet and have tried loading plyr before dplyr but without success..
#plyr must be installed before dplyr for grouping issues purposes.
detach("package:plyr")
detach("package:ggpubr", unload = TRUE)
results in an error as follow:
Error in detach("package:plyr") : invalid 'name' argument