dplyr issues when using group_by(multiple variables)

I had a similar problem. I found that simply detaching plyr solved it:

detach(package:plyr)    
library(dplyr)

Leave a Comment