LoslegenKostenlos loslegen

Movie transactions

In the last exercises, you explored the movies_subset dataset and figured out that the userId column and the title column represent the user and the movie they've watched. Given what you've learned so far, you know that before going into the Market Basket Analysis toolkit and coming up with associations rules, you need to turn the dataset into the transactional class. This is a necessary step to perform the Market Basket Analysis with the arules package.

Diese Übung ist Teil des Kurses

Market Basket Analysis in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Split dataset into movies and users
data_list = ___(movie_subset$___,
                movie_subset$___)
Code bearbeiten und ausführen