1. Learn
  2. /
  3. Courses
  4. /
  5. Market Basket Analysis in R

Exercise

Extracting movie rules

Now that you have a better idea which thresholds to be used in the apriori() function, you are ready to extract association mining rules from the transactional dataset movie_subset. Extracting the set of movie rules will enable us to provide recommendations to users when it comes to movies. For instance, given that you have already watched a set of movies, which movie could you watch next? To answer this, we could make use of the bundle of movies watched by all other users and use Market Basket Analysis to this purpose. Moreover, some movie rules can be redundant, you should therefore extract the set of non-redundant movie rules in order to get valuable information and insights about the movies watched by users.

Instructions 1/4

undefined XP
    1
    2
    3
    4
  • Summarize the set of extracted rules - with minimum support of 30% and minimum confidence of 90%.