cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
0 Kudos

Add Profiler JSL message "<<get response values"

Right now there is a way to get the current factor settings from a profiler, but there is no native way to get the current response values from the profiler. Instead, we have to scrape them from the display tree of the profiler which could be brittle across JMP releases.

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );
obj = dt << Profiler(
	Y( :Pred Formula ABRASION, :Pred Formula MODULUS, :Pred Formula ELONG, :Pred Formula HARDNESS ),
	Desirability Functions( 1 )
);
obj << Get Factor Settings;