Choice Modeling for Marketing in R
Elea McDonnell Feit
Assistant Professor of Marketing, Drexel University
This is sometimes called "revealed preference" data.
This is called "conjoint data" or "stated preference data".
head(sportscar_wide)
resp_id ques segment choice seat.1 seat.2 seat.3
1 1 1 basic 3 2 5 5
2 1 2 basic 1 5 2 4
3 1 3 basic 1 5 4 4
trans.1 trans.2 trans.3 convert.1 convert.2
1 manual auto auto yes no
2 manual manual auto no no
3 auto auto manual yes yes
nrow(sportscar_wide)
2000
Choice Modeling for Marketing in R