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" )
);
The resulting column names are different depending on the language setting. For example JMP in English gives columns like "Mean", "Std Dev", etc. but in German I get "Mittelwert", "Std.-Abw." and so on. In other languages I get other column names.
But this is not supposed to be the end of my script. I would like to use those columns later in the script, e.g. in column formulas of new columns.
How to reference those columns language independent? What would also solve my problems is to force English stat column names independent from the current language settings. Is that possible somehow?
Thanks
Rob