An efficient design with zero priors
Posted: Fri May 24, 2024 4:32 am
Hi,
I am trying to estimate an efficient design with zero priors (except price considering the economic theory) and I am not sure which of these two (if any) is the most appropriate one.
This is my first syntax, where I use continuous variables without defining a baseline:
Design
;alts = alt1*, alt2*, optout
;rows=18
;block=2
;eff=(mnl,d)
;model:
U(alt1) =b1 * price[1.1,3.3,5.5] + b2 * com[20, 35, 50] + b3 * ori[1, 2, 3] + b4 * agu[10, 15, 20]/
U(alt2) =b1 * price + b2 * com + b3 * ori + b4 * agu$
After checking a previous post with a similar question, I also created this syntax using dummy variables:
Design
;alts = alt1*, alt2*, optout
;rows=18
;block=2
;eff=(mnl,d)
;model:
U(alt1) =b1 [-0.001] * price[1.10, 3.30, 5.50]
+ b2.dummy[0|0] * com[1, 2, 0] ?
+ b3.dummy[0|0] * ori[1, 2, 0]
+ b4.dummy[0|0] * agu[1, 2, 0]
/
U(alt2) =b1 * price
+ b2 * com
+ b3 * ori
+ b4 * agu
/
U(optout) = b5
$
Any help will be highly appreciated!
I am trying to estimate an efficient design with zero priors (except price considering the economic theory) and I am not sure which of these two (if any) is the most appropriate one.
This is my first syntax, where I use continuous variables without defining a baseline:
Design
;alts = alt1*, alt2*, optout
;rows=18
;block=2
;eff=(mnl,d)
;model:
U(alt1) =b1 * price[1.1,3.3,5.5] + b2 * com[20, 35, 50] + b3 * ori[1, 2, 3] + b4 * agu[10, 15, 20]/
U(alt2) =b1 * price + b2 * com + b3 * ori + b4 * agu$
After checking a previous post with a similar question, I also created this syntax using dummy variables:
Design
;alts = alt1*, alt2*, optout
;rows=18
;block=2
;eff=(mnl,d)
;model:
U(alt1) =b1 [-0.001] * price[1.10, 3.30, 5.50]
+ b2.dummy[0|0] * com[1, 2, 0] ?
+ b3.dummy[0|0] * ori[1, 2, 0]
+ b4.dummy[0|0] * agu[1, 2, 0]
/
U(alt2) =b1 * price
+ b2 * com
+ b3 * ori
+ b4 * agu
/
U(optout) = b5
$
Any help will be highly appreciated!