Association rules with R recipe
mimihhwa
Registered Posts: 1 ✭
i have a dataset with
product_id object product_name object category object discounted_price float64 actual_price float64 discount_percentage float64 rating float64 rating_count float64 about_product object user_id object user_name object review_id object review_title object review_content object img_link object product_link object
i want to run association rule apriori with this dataset
Answers
-
Alexandru Dataiker, Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 1,226 Dataiker
Hi @mimihhwa
,
You should be able to use a python recipe with mlxtend.frequent_patterns :
https://rasbt.github.io/mlxtend/user_guide/frequent_patterns/apriori/
Kind Regards,