Hi @mhans,
I better understand what you're trying to do now. To match those results (Bradley-Terry model) you will need to use the Generalized Regression platform, which is available in JMP Pro only. I've attached a JMP version of the data table used in that SAS example and saved the script to the table. Here are the steps to reproduce this:
1. Launch Analyze > Fit Model.
2. Specify Generalized Regression as the Personality, and Distribution as Binomial.
3. Enter both Win and Total as Y, Columns, and enter all predictors as model effects.
4. Check "No Intercept" at the bottom.
Your Fit Model dialog should now look like this:
5. Click Run, then in the resulting dialog, specify Logistic Regression as the estimation method, and click go:
This will return the following output, which you can confirm matches the SAS results.
Here is the JSL for this analysis, which is also saved to the attached table.
Fit Model(
Y( :win, :total ),
Effects( :mil, :det, :tor, :new, :bos, :cle, :bal ),
No Intercept( 1 ),
Personality( "Generalized Regression" ),
Generalized Distribution( "Binomial" ),
Run(
Fit( Estimation Method( Logistic Regression ), Validation Method( None ) )
)
);
I hope this helps!
@julian