require(arules)
Groceries <- read.transactions("C:/Users/IBM_ADMIN/Desktopgroceries.csv",sep=",")
m1 <- apriori(Groceries,parameter=list(support=0.007,confidence=0.25,minlen=2))
subset.matrix <- is.subset(m1, m1)
#this piece of line is not working
This produces the following error message:
Error in match(x, table, nomatch = 0L) :
'match' requires vector arguments
Please do help me.