Hi,
There is no way to "force" EMS within the Variability platform because REML gives better (less biased) estimates when there are negative variance components that need to be zeroed. However, it is possible to do EMS in the Fit Model platform in JMP. If you use the following script with the JMP data table you can get the EMS estimates for this random effects model:
Fit Model(
Y( :Data ),
Effects,
Random Effects( :OP, :Part[:OP] ),
NoBounds( 0 ),
Personality( "Standard Least Squares" ),
Method( "EMS" ),
Emphasis( "Minimal Report" ),
Run(
:Data << {Summary of Fit( 1 ), Analysis of Variance( 1 ),
Parameter Estimates( 1 ), Lack of Fit( 0 ), Scaled Estimates( 0 ),
Plot Actual by Predicted( 0 ), Plot Regression( 0 ),
Plot Residual by Predicted( 0 ), Plot Studentized Residuals( 0 ),
Plot Effect Leverage( 0 ), Plot Residual by Normal Quantiles( 0 ),
Box Cox Y Transformation( 0 )}
)
);
Notice that the OP variance component is negative in the Fit Model EMS report. It just needs to be set to zero to match Minitab.
laural_jmp_0-1607446383851.png
I hope this helps.
Laura