Hi
I am Alex Karki from Sydney.
Thank you for Ngene manual which is easy to understand.
I have two alternatives A & B and following attributes to choose parking.
1. Walk time to destination
2. Parking cost
3. Finding parking space(search time)
Relation between Attributes.
1. If Parking Cost increase then Walk time & finding parking space time to be less
2. If Parking Cost decrease then Walk time & finding parking space time to be more.
I undertook efficient design and constrain efficient design but still I get majority of scenarios to have one alternative as OBVIOUS dominant.
Reading through Ngene manual, efficient design picks two extreme attribute levels to minimize VC matrix.
Constrain Efficient Design code:
Design
;alts = A, B
;rows = 24
;eff = (mnl,d)
;cond:
if(A.cost=[20,25], A.walk=2),
if(A.cost=0, A.walk=11),
if(A.cost=[10,5], A.walk=8),
if(A.cost=15, A.walk=5),
if(A.cost > B.cost, A.find <= B.find) ,
if(B.cost=[20,25], B.walk=2),
if(B.cost=0, B.walk=11),
if(B.cost=[10,5], B.walk=8),
if(B.cost=15, B.walk=5)
;model:
U(A) = b2[-0.001] * walk[2,5,8,11] + b3[-0.002] * cost[0, 5, 10,15,20,25] + b4[-0.003] * find[1, 3, 5] /
U(B) = b2 * walk + b3 * cost + b4 * find $
without constrain design (Efficient Design)
Constrain Efficient Design code:
Design
;alts = A, B
;rows = 24
;eff = (mnl,d)
;model:
U(A) = b2[-0.001] * walk[2,5,8,11] + b3[-0.002] * cost[0, 5, 10,15,20,25] + b4[-0.003] * find[1, 3, 5] /
U(B) = b2 * walk + b3 * cost + b4 * find $
Question
1. Can I hand-pick and include only the non-dominant scenarios among the 24 rows ?