How to reference stat columns language independent or how to force English stat column names?
Hi all,
I am trying to write a scripts that has to work in different language settings of JMP.
Parts of my script use the Summary function:
Summary(
Group( :SomeColumnX, :SomeColumnY, :SomeColumnZ ), // number of grouping columns different each time
N( :Result ),
Mean( :Result ),
Std Dev( :Result ),
CV( :Result ),
Freq( "None" ),
Weight( "None" ),
statistics column name format( "stat" )
);
...