April 2020
Intermediate to advanced
330 pages
7h 44m
English
Recommender systems seek to use available information and preference pattern data to generate predictions about a particular user's interests.
As a starting point, we can use EDA to identify important patterns and trends in the underlying data to inform our understanding and subsequent analysis:
# user-item interaction exploratory data analysis (EDA)item_interactions <- aggregate( rating ~ title, data = steamdata, FUN = 'sum')item_interactions <- item_interactions[ order(item_interactions$rating, decreasing = TRUE),]item_top10 <- head(item_interactions, 10)kable(item_top10) ...
Read now
Unlock full access