Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

data mergeing---

data = pd.merge(pd.merge(ratings, users), movies)

ratings_by_title = data.groupby('title')
list(ratings_by_title)

# Select rows on the index


mean_ratings = mean_ratings.loc[active_titles]
mean_ratings

You might also like