<?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: I am splitting a table and looking to name it something different. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551649#M76746</link>
    <description>&lt;P&gt;Thank you very much for the explanations! Very insightful. I tried understanding via the Scripting Index but must've gotten lost in the sauce. I do have JMP 16 and did not know of the Enhanced Log you mentioned.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 02 Oct 2022 00:22:36 GMT</pubDate>
    <dc:creator>Hobbi</dc:creator>
    <dc:date>2022-10-02T00:22:36Z</dc:date>
    <item>
      <title>I am splitting a table and looking to name it something different.</title>
      <link>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551432#M76732</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully something simple here but I have a JSL where I am taking a table and splitting it. I want to name it something but it keeps giving itself an "Untitled ###" table name. I want to name it&amp;nbsp;&lt;CODE class=" language-jsl"&gt;"new_table_split"&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;MOSFET_TLM &amp;lt;&amp;lt; Split("new_table_split",
	Split By( :DeviceID ),
	Split( :LotID, :WaferID, :TestLevel, :XLoc, :YLoc, :Rsh, :Rcon ),
	Remaining Columns( Drop All ),
	Sort by Column Property
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:28:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551432#M76732</guid>
      <dc:creator>Hobbi</dc:creator>
      <dc:date>2023-06-11T11:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: I am splitting a table and looking to name it something different.</title>
      <link>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551469#M76733</link>
      <description>&lt;P&gt;The argument for naming the table is Output Table().&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=open("$SAMPLE_DATA\Big Class.jmp");

dt &amp;lt;&amp;lt; Split(
	Split By( :sex ),
	Split( :height ),
	Group( :name ),
	Output Table( "my split table" ),
	Remaining Columns( Drop All ),
	Sort by Column Property
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;There are three ways to learn this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Perform the Split interactively, using the option in the Split dialog to name the output table and then examine the Source script in the resulting table.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-09-30_16-42-32.637.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45944i5309F3903A6A9664/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2022-09-30_16-42-32.637.png" alt="2022-09-30_16-42-32.637.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. If you have JMP 16 or greater the &lt;A href="https://www.jmp.com/support/help/en/16.0/index.shtml#page/jmp/enhanced-log-in-jmp.shtml" target="_self"&gt;Enhanced Log&lt;/A&gt; window will show you the script.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-09-30_16-46-49.183.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45945iFDFD5E42FEE22C22/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2022-09-30_16-46-49.183.png" alt="2022-09-30_16-46-49.183.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;3. The &lt;A href="https://www.jmp.com/support/help/en/16.2/index.shtml#page/jmp/the-scripting-index.shtml" target="_self"&gt;Help-&amp;gt;Scripting Index&lt;/A&gt; entry for Split shows the syntax.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-09-30_16-49-21.526.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45946iB6C4787143B66488/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2022-09-30_16-49-21.526.png" alt="2022-09-30_16-49-21.526.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 20:51:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551469#M76733</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2022-09-30T20:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: I am splitting a table and looking to name it something different.</title>
      <link>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551649#M76746</link>
      <description>&lt;P&gt;Thank you very much for the explanations! Very insightful. I tried understanding via the Scripting Index but must've gotten lost in the sauce. I do have JMP 16 and did not know of the Enhanced Log you mentioned.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 00:22:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/I-am-splitting-a-table-and-looking-to-name-it-something/m-p/551649#M76746</guid>
      <dc:creator>Hobbi</dc:creator>
      <dc:date>2022-10-02T00:22:36Z</dc:date>
    </item>
  </channel>
</rss>

