การแสดงภาพข้อมูลการเลือก

Choice Modeling สำหรับการตลาดใน R

Elea McDonnell Feit

Assistant Professor of Marketing, Drexel University

xtabs(~ trans, data = sportscar)
trans
  auto manual 
  3001   2999
xtabs(~ trans + choice, data = sportscar)
        choice
trans       0    1
  auto   1673 1328
  manual 2327  672
xtabs(choice ~ trans, data=sportscar)
trans
  auto manual 
  1328    672
Choice Modeling สำหรับการตลาดใน R

การพล็อตผลลัพธ์จาก xtabs()

plot(xtabs(~ trans + choice, data = sportscar))

จำนวนการเลือกตามประเภทเกียร์

Choice Modeling สำหรับการตลาดใน R

การเลือกเกียร์ตามกลุ่มตลาด

plot(xtabs(~ trans + segment + choice, data = sportscar))

จำนวนการเลือกตามประเภทเกียร์และกลุ่มตลาด

Choice Modeling สำหรับการตลาดใน R

มาฝึกกันเถอะ!

Choice Modeling สำหรับการตลาดใน R

Preparing Video For Download...