I started to write code in RStudio to develop a model using arules package.
#Rules
?apriori
rules = apriori(data, parameter= list(supp = 0.5, conf = 0.9, maxlen = 10))
inspect(rules)
I got 320 rules (see attached image).
I can not understand what is on lhs/rhs.
It seems that I have to prepare my database before going to this line.
Can anyone help me about this?