Top "Arules" questions

arules is an R package, which provides the infrastructure for representing, manipulating and analyzing transaction data and patterns: frequent itemsets and association rules

Load a dataset into R with data() using a variable instead of the dataset name

I am trying to load a dataset into R using the data() function. It works fine when I use the …

r dataset apriori arules
how to convert data.frame to transactions for arules

I read data from a csv file, the data has 3 columns, one is transaction id, the other two are product …

r transactions attributes arules
How to get items for both LHS and RHS for only specific columns in arules?

Within the apriori function, I want the outcome to only contain these two variables in the LHS HouseOwnerFlag=0 and HouseOwnerFlag=1. …

r apriori arules
Writing rules generated by Apriori

I'm working with some large transactions data. I've been using read.transactions and apriori (parts of the arules package) to …

r data-mining apriori arules
Association analysis with duplicate transactions using arules package in R

I want to create a transaction object in basket format which I can call anytime for my analyses. The data …

r arules market-basket-analysis
How to prep transaction data into basket for arules

Ok, so I have searched a lot and want to run arules on sales data. I just need to properly …

r arules market-basket-analysis
packages installation for arules in R

I have the same problem with previous post by another user How to upload arules package in R i am …

r arules market-basket-analysis
R Basket Analysis using arules package with unique order number but duplicate order combinations

R Basket analysis using arules package with unique order number but duplicate order combinations Just learning R. I'm trying to …

r arules market-basket-analysis
Sorting Association Rules in R

I'm trying to accomplish the goals stated below and have oodles of errors. I've spent a lot of time trying …

r sorting indexing apriori arules
Association rule in R - removing redundant rule (arules)

Assume we have 3 rules: [1] {A,B,D} -> {C} [2] {A,B} -> {C} [3] Whatever it is Rule [2] is …

r arules