Hello!
I want to simulate responses using built in JMP Simulate Responses feature.
I use binomial distribution and my model for simplisity lets say is
p = 0,05 + 0.04*X1 + 0,02*X2.
(Actually I want to use simulation for fractional factorial designs.)
So
X1 | X2 | Y |
-1 | -1 | 0.05 |
-1 | 1 | 0.02 |
1 | -1 | 0.04 |
1 | 1 | 0.06 |
In order to simulate this model what values do I need to enter in a Simulate Responses dialog box? Do I need to enter betas? But how do I derive them from coefficients?
Do I need to modify the formula?
Random Binomial(
100000,
1 / (1 + Exp(
-1 * (0.05 + Match( :X1, "-1", 0.04, "1", -0.04, . ) + Match( :X2, "-1", 0.02, "1", -0.02, . )
+Match( :X1, "-1", Match( :X2, "-1", 0.06, "1", -0.06, . ), "1", Match( :X2, "-1", -0.06, "1", 0.06, . ), . ))
))
)
Learning DOE