I run an efficient design (Codes shown below) and got 99.6 of B estimate. However when I check the result and found there were a lot alternative pairs of same price with different combination of other attributes. For example:
Design
Choice situation alt1.price alt1.or alt1.ft alt1.ct alt2.price alt2.or alt2.ft alt2.ct Block
1 9.95 0 0 0 9.95 0 1 1 4
2 9.95 1 1 1 9.95 0 1 0 2
3 9.95 0 0 0 9.95 1 0 1 1
4 12.45 0 0 1 12.45 0 1 0 3
5 7.45 0 0 1 7.45 0 1 0 1
6 12.45 0 0 0 12.45 0 0 1 1
7 9.95 0 1 1 9.95 1 1 0 1
8 4.45 0 0 1 4.45 1 1 1 4
9 9.95 0 0 0 9.95 0 1 0 3
10 9.95 0 0 1 9.95 0 0 0 2
11 7.45 1 1 1 7.45 0 1 1 2
12 4.45 0 1 0 4.45 0 1 1 3
Is this ok? or something wrong in codes? If so, how can improve this?
The Ngene codes are listed below:
- Code: Select all
Design;
;alts = alt1*,alt2*,nobuy
;rows = 32
;eff = (mnl,d)
;alg = mfederov
;block = 4
;model:
U(alt1) = b0 + b1[-0.01] * price[4.95, 7.45, 9.95, 12.45](8,8,8,8) +
b2.dummy * Or[0,1] +
b3.dummy * Ft[0,1] +
b4.dummy * Ct[0,1]
/
U(alt2) = b0 + b1 * price +
b2 * Or +
b3 * Ft +
b4 * Ct
$
Thanks so much for your help.
Wei