Hi all,
I came across a design today in which I’d like to define the levels of some attributes as -20%,-10%, 0, +10%, and some others as 15, 35, 60 (minutes). Please, note that when I say -20%, -10%, 0, +10%, I don’t mean in reference to the value of another attribute (using .ref and .piv). What I mean is -20%, -10%, 0, +10% with respect to a stated value declared in the survey previous to the SCE. For instance, a -20%, -10%, 0, or +10% of the travel time of the last trip that the respondent indicated in a previous section.
So I wonder if the utilities could be written, for instance, as:
U(Car) = b1 * tt_car[-1,0,1,2] +
b2 * tc_car[-1,0,1,2] +
b3 * ac_car[-1,0,1,2] /
U(Air) = b4 * tt_air[-2,-1,1,2] +
b5 * tc_air[-2,-1,1,2] +
b6 * ac_air[-2,-1,1,2] +
b7 * tfrt_air[15,35,60] +
b8 * HS_tfr[0,1] /
U(Bus) = b10 * tt_bus[-2,-1,0,1] +
b11 * tc_bus[-2,-1,0,1] +
b12 * ac_bus[-2,-1,0,1] +
b13 * tfrt_bus[15,35,60] /
where -2,-1,0,1 would stand for -20%, -10%, 0, +10%.
Would that be correct? My concern is about mixing values that represent a percentage of ‘modification’ with numbers that indeed represent ‘true’ values. Does what I say make sense?
Thanks for your help.
J.