<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to reference stat columns language independent or how to force English stat column names? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-reference-stat-columns-language-independent-or-how-to/m-p/881853#M104592</link>
    <description>&lt;P&gt;Which JMP version are you using? Have you faced issues already due to different languages? For example, this should work fine when you run it with JMP's display language set to German (in JMP 18.2)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt_summary = dt &amp;lt;&amp;lt; Summary(
	Group(:Age),
	subgroup(:sex),
	Mean(:Height),
	Include marginal statistics
);

dt &amp;lt;&amp;lt; Update(
	With(dt_summary),
	Match Columns(:age = :age)
);
Close(dt_summary, no save);

dt &amp;lt;&amp;lt; New Column("A", Numeric, Continuous, Formula(
	:"Mean(height, F)"n + :"Mean(height, M)"n
));

&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 26 Jun 2025 11:29:01 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-06-26T11:29:01Z</dc:date>
    <item>
      <title>How to reference stat columns language independent or how to force English stat column names?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-reference-stat-columns-language-independent-or-how-to/m-p/881835#M104591</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I am trying to write a scripts that has to work in different language settings of JMP.&lt;/P&gt;
&lt;P&gt;Parts of my script use the Summary function:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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" )
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;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.&lt;BR /&gt;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.&lt;BR /&gt;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?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;BR /&gt;Rob&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 09:56:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-reference-stat-columns-language-independent-or-how-to/m-p/881835#M104591</guid>
      <dc:creator>Robbb</dc:creator>
      <dc:date>2025-06-26T09:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to reference stat columns language independent or how to force English stat column names?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-reference-stat-columns-language-independent-or-how-to/m-p/881853#M104592</link>
      <description>&lt;P&gt;Which JMP version are you using? Have you faced issues already due to different languages? For example, this should work fine when you run it with JMP's display language set to German (in JMP 18.2)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt_summary = dt &amp;lt;&amp;lt; Summary(
	Group(:Age),
	subgroup(:sex),
	Mean(:Height),
	Include marginal statistics
);

dt &amp;lt;&amp;lt; Update(
	With(dt_summary),
	Match Columns(:age = :age)
);
Close(dt_summary, no save);

dt &amp;lt;&amp;lt; New Column("A", Numeric, Continuous, Formula(
	:"Mean(height, F)"n + :"Mean(height, M)"n
));

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jun 2025 11:29:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-reference-stat-columns-language-independent-or-how-to/m-p/881853#M104592</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-06-26T11:29:01Z</dc:date>
    </item>
  </channel>
</rss>

