Hi Everyone,
I have a data of size close to 4GB's having columns as "UserID, MediaID,Full/Mini. I want to know how many full and mini episodes each user has watched. Basically each row having No. of Full and Mini Episodes watched by each user. Also let me know how can we do it more efficiently since the data size is huge and it will slow down the processing.
Thanks. Any help will be highly appreciated.
dat=data.frame(id=c("a","a","a","b","c"), media_id=c("1a","1b","1c","2b","2c"), Full_mini=c("ful","ful","mini","mini","full")) id=c("a","a","a","b","c")