Hallo,
I have a dataset with videogames.
I have a column with 12 different type of genre, and i have a column with EU_sales.
I want to know how much EU_sales te music genre has.
So i tired this one:
music <- videogames %>%
filter (Genre == 'Misc' 'EU_Sales') %>%
count ()
But i have a error with: Error in group_vars(x) : argument "x" is missing, with no default
can anyone please help me?