I do not see a way to send messages to the Prediction Profiler that is embedded in any fitting platform. The only messages I found are the ones that open or close it.
fit << Profiler( 1 );
fit << Profiler( 0 );
Maybe someone else knows how to send messages to the embedded object that accomplish the same tasks as the commands in the red triangle menu.
So you have to include the necessary arguments to the message that opens the profiler to get what you want. Here is an example:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
launch = dt << Fit Model(
Y( :weight ),
Effects( :age, :sex, :height ),
Personality( "Standard Least Squares" ),
Emphasis( "Minimal Report" )
);
fit = launch << Run;
fit << Profiler( 1,
Confidence Intervals( 1 ),
Desirability Functions( 1 ),
Term Value(
age( 12, Lock( 0 ), Show( 1 ) ),
sex( "F", Lock( 0 ), Show( 1 ) ),
height( 62.55, Lock( 0 ), Show( 1 ) )
)
);