Skip to content

Instantly share code, notes, and snippets.

@sriyoda
Last active January 31, 2016 23:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sriyoda/f85e24ce29e2155bb904 to your computer and use it in GitHub Desktop.
Save sriyoda/f85e24ce29e2155bb904 to your computer and use it in GitHub Desktop.
Calculate Average Movie Rating
# calcuate average movie rating
b <- group_by(b, movieId) %>% summarise(mean(rating))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment