R ile Pazar Sepeti Analizi
Christopher Bruffaerts
Statistician
Müşterileri/kullanıcıları anlama
MBA’yı bir adım öteye taşımak
Müşterilere/kullanıcılara öneriler
Sonuç olarak yoğurt
# Sağ tarafta Yoğurt olan kuralları çıkarın
yogurt_rules_rhs = apriori(Groceries, parameter = list(supp = 0.001,conf = 0.8),
appearance = list(default = "lhs",rhs = "yogurt"))
# En yüksek lift ile ilk kuralları bulun
inspect(head(sort(yogurt_rules_rhs, by="lift")))
lhs rhs support confidence lift count
[1] {root vegetables,butter,cream cheese } => {yogurt} 0.001016777 0.9090909 6.516698 10
[2] {tropical fruit,whole milk,butter,sliced cheese} => {yogurt} 0.001016777 0.9090909 6.516698 10
[3] {other vegetables,curd,whipped/sour cream,cream cheese } => {yogurt} 0.001016777 0.9090909 6.516698 10
[4] {tropical fruit,other vegetables,butter,white bread} => {yogurt} 0.001016777 0.9090909 6.516698 10
[5] {sausage,pip fruit,sliced cheese} => {yogurt} 0.001220132 0.8571429 6.144315 12
[6] {tropical fruit,whole milk,butter,curd} => {yogurt} 0.001220132 0.8571429 6.144315 12
Öncül olarak yoğurt
# Sol tarafta Yoğurt olan kuralları çıkarın
yogurt_rules_lhs = apriori(Groceries, parameter = list(supp = 0.001, conf = 0.8, minlen = 2),
appearance = list(default = "rhs",lhs = "yogurt"))
# Kuralların özeti
summary(yogurt_rules_lhs)
set of 0 rules
R ile Pazar Sepeti Analizi