Created
April 24, 2024 14:11
-
-
Save seralouk/f84dbffd85ab50277f33ceec4609f9e3 to your computer and use it in GitHub Desktop.
A Movie Recommendation System in Python from Scratch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mean_rating = ratings.groupby('movieId')[['rating']].mean() | |
mean_rating = mean_rating.reset_index() | |
mean_rating |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment