Analysis for partial choice set design
Posted: Thu Jul 25, 2024 4:30 pm
Dear team,
We are conducting a labelled partial choice set design with the following labels: video, telephone, app, online, and face-to-face (f2f). In our candidate set design, f2f appears consistently, while any two alternatives from the remaining four vary, resulting in three alternatives per person.
We have collected pilot data and are now seeking help with the analysis. We believe that this could be managed by setting up the data for NLOGIT, for example, by using cset = 5, alti = 1,2,3,4,5, and -999 for the attribute levels of the specific alternative that were not shown. Could you assist if this is the correct approach?
NLOGIT codes are pasted below for reference.
Thank you for your help in advance.
Kind regards,
Pakhi
We are conducting a labelled partial choice set design with the following labels: video, telephone, app, online, and face-to-face (f2f). In our candidate set design, f2f appears consistently, while any two alternatives from the remaining four vary, resulting in three alternatives per person.
We have collected pilot data and are now seeking help with the analysis. We believe that this could be managed by setting up the data for NLOGIT, for example, by using cset = 5, alti = 1,2,3,4,5, and -999 for the attribute levels of the specific alternative that were not shown. Could you assist if this is the correct approach?
NLOGIT codes are pasted below for reference.
Thank you for your help in advance.
Kind regards,
Pakhi
- Code: Select all
Nlogit
;lhs = choice, cset, alti
;choices = video, telephone, app, online, f2f
;checkdata
;model:
U(video) = video + v_admin0*admin0 + v_tech0*tech0 + v_tech1*tech1 + v_dur*dur + v_feed0*feed0/
U(telephone) = telephone + t_admin0*admin0 + t_tech0*tech0 + t_tech1*tech1 + t_dur*dur + t_feed0*feed0/
U(app) = app + a_admin0*admin0 + a_tech0*tech0 + a_tech1*tech1 + a_dur*dur + a_feed0*feed0/
U(online) = online + o_admin0*admin0 + o_tech0*tech0 + o_tech1*tech1 + o_dur*dur + o_feed0*feed0/
U(f2f) = f_admin0*admin0 + f_tech0*tech0 + f_tech1*tech1 + f_dur*dur + f_feed0*feed0 $