เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

Counting up the pairs

You can now create DataFrame of all the permutations of movies that have been watched by the same user. This is of limited use unless you can find which movies are most commonly paired.

In this exercise, you will work with the movie_combinations DataFrame that you created in the last exercise (that has been loaded for you), and generate a new DataFrame containing the counts of occurrences of each of the pairs within.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Building Recommendation Engines in Python

ดูคอร์ส

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Calculate how often each item in movies_a occurs with the items in movies_b
combination_counts = movie_combinations.____(['movie_a', 'movie_b']).____()

# Inspect the results
print(combination_counts.head())
แก้ไขและรันโค้ด