НачатьНачать бесплатно

Visualizing movie rules

Comparing the set of extracted rules for movies can be tedious from a set of rules displayed in a table. You can use different visualizations to visually inspect the different associations between movies. You will be using the different types of plots: scatterplot, matrix, grouped and paracoord. Let's start off by creating some visualizations with respect to the set of extracted rules rules_movies.

Это упражнение является частью курса

Market Basket Analysis in R

Посмотреть курс

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Plot rules as scatterplot
plot(rules_movies,
     measure = c("___", "___"),
     ___ = "support",
     jitter = 1,
     ___ = "___")
Редактировать и запускать код