I'm doing Association rule mining in R. This's the dataset I'm using enter link description here.
And here's my code.I can't understand why I'm getting 0 rules.
library(readr)
Bakery <- read_csv("Bakery.csv")
View(Bakery)
summary(Bakery)
library(arules)
rules <- apriori(Bakery)
summary(rules)

You have to convert the data frame into a transactions class to be used for
arules. Try this: