可视化选择数据

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
R 中的营销选择建模

绘制 xtabs() 的输出

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

变速箱与选择计数

R 中的营销选择建模

按细分市场的变速箱选择

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

分级别的变速箱选择计数

R 中的营销选择建模

开始练习!

R 中的营销选择建模

Preparing Video For Download...