@jmessamer ,
This can be done with a script. Below are two examples. You should post which version of JMP you aer using.
REML example
dt = Open( "$SAMPLE_DATA/Animals.jmp" );
obj = Fit Model(
Y( :miles ),
Effects( :species, :subject[:species] & Random, :season, :species * :season ),
Personality( Standard Least Squares ),
Method( REML ),
Convergence Limit( 0.0001 ),
Run Model
);
F = obj << Get Indiv Confid Limit Formula; //creates a script
F; //executes the script.
Least Squares Example
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Drug.jmp" );
obj = Fit Model(
Y( :y ),
Effects( :Drug, :x ),
Personality( Standard Least Squares ),
Emphasis( Minimal Report ),
Run
);
F = obj << Get Indiv Confid Limit Formula; //see log a script is created
F; // execute this script to get the formulas