After importing excel file in r studio and
the code is
library("arules")
rules=apriori(Apriori,parameter = list(supp=0.3,conf=0.3, target= "rules"))
summary(rules)
inspect(rules)
It is showing an error
Warning message:
Column(s) 1, 11 not logical or factor. Applying default discretization (see '? discretizeDF').
How to resolve it.