<?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 rename column of summary table? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/478597#M72279</link>
    <description>&lt;P&gt;you can also rename those stat columns with the drop down in below menu ...&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mandy_Chambers_0-1649770220689.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41694i48C8FA5FC151D6A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Mandy_Chambers_0-1649770220689.png" alt="Mandy_Chambers_0-1649770220689.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Apr 2022 13:30:35 GMT</pubDate>
    <dc:creator>Mandy_Chambers</dc:creator>
    <dc:date>2022-04-12T13:30:35Z</dc:date>
    <item>
      <title>How to rename column of summary table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/477697#M72210</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I have one summary table and I would like to rename one or two columns of the summary table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My script is like below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;ST_NEW = dt &amp;lt;&amp;lt; Summary(
	Group( :prodgroup3, :link_id, :complevel_1, :test_or_bond_head_id, :bondstage ),
	Mean( :align_ratio_2 ) &amp;lt;&amp;lt; Name( "align " ),
	Std Dev( :align_ratio_2 ),
	Output Table Name( "ST_NEW" ), 

);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I would like to rename circled columns to new names&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhamBao_0-1649494389982.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41634i95E58A90EE5BDBB4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PhamBao_0-1649494389982.png" alt="PhamBao_0-1649494389982.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Could anyone help me to solve this?&lt;BR /&gt;&lt;BR /&gt;Sincerely,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:46:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/477697#M72210</guid>
      <dc:creator>PhamBao</dc:creator>
      <dc:date>2023-06-10T23:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename column of summary table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/477718#M72213</link>
      <description>&lt;P&gt;there are 2 issue.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;By default, the summary daata table produced is Linked to the original table, which forces the table to be locked.&amp;nbsp; This defaule needs to be over ruled.&lt;/LI&gt;
&lt;LI&gt;The renaming of the column needs to be done after the new table is produced.&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
// Open Data Table: big class.jmp
// → Data Table( "big class" )
dt = Open( "$SAMPLE_DATA/big class.jmp" );
ST_NEW = dt &amp;lt;&amp;lt; Summary(
	Group( :sex ),
	Mean( :height ),
	Std Dev( :height ),
	Output Table Name( "ST_NEW" ),
	link to original data table( 0 )
);
ST_NEW:"Mean(height)"n &amp;lt;&amp;lt; set name( "align" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Apr 2022 09:49:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/477718#M72213</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-04-09T09:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename column of summary table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/478485#M72264</link>
      <description>&lt;P&gt;If being linked to the original table is important (you want to select a row in the summary and have relevant rows in the original table be selected, for example) you could make a new column with the name you are looking for and then hide the original:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);
dt = Open( "$SAMPLE_DATA/big class.jmp" );
ST_NEW = dt &amp;lt;&amp;lt; Summary(
	Group( :sex ),
	Mean( :height ),
	Std Dev( :height ),
	Output Table Name( "ST_NEW" )
);
ST_NEW &amp;lt;&amp;lt; New Column("align", Numeric, "Continuous", Format("Best", 12), Formula(:"Mean(height)"n));
ST_NEW:"Mean(height)"n &amp;lt;&amp;lt; Hide( 1 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Apr 2022 21:05:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/478485#M72264</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2022-04-11T21:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename column of summary table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/478597#M72279</link>
      <description>&lt;P&gt;you can also rename those stat columns with the drop down in below menu ...&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mandy_Chambers_0-1649770220689.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41694i48C8FA5FC151D6A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Mandy_Chambers_0-1649770220689.png" alt="Mandy_Chambers_0-1649770220689.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 13:30:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-rename-column-of-summary-table/m-p/478597#M72279</guid>
      <dc:creator>Mandy_Chambers</dc:creator>
      <dc:date>2022-04-12T13:30:35Z</dc:date>
    </item>
  </channel>
</rss>

