<?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: Help Needed! Incomplete Details when using SPLIT column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57888#M32192</link>
    <description>&lt;P&gt;Jim (txnelson) provided you the solution to your problem.&amp;nbsp; This is just an added hint. The data looks like a within wafer (litho, implant, test ?) experiment. Your problem is the most commonly made mistake with Split. As Jim noted, you need a unique group specification. Each defined group gets 1 row.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am guessing based upon the portion of the table you displayed that this might be the specification you might need using JSL.&amp;nbsp; If you are doing this via the user interface, specify the columns accordingly.&amp;nbsp; If each object "gets" all 3 steps, then use this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; Split(
	Split By( :Step ),
	Split( :Shift ),
	Group(:expNum, :WAFERNUM, :Design, :Object, :tgt)
	remaining columns( drop all )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 May 2018 19:15:07 GMT</pubDate>
    <dc:creator>gzmorgan0</dc:creator>
    <dc:date>2018-05-22T19:15:07Z</dc:date>
    <item>
      <title>Help Needed! Incomplete Details when using SPLIT column</title>
      <link>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57824#M32177</link>
      <description>&lt;P&gt;Hello JMP community!&lt;/P&gt;&lt;P&gt;I need help figuring out what seems to be the problem when I Split a column of the following Data Table:&lt;/P&gt;&lt;P&gt;My raw data is as shown:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Data Table 1 (Raw Data)" style="width: 627px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/10798i35B3692E251C85BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="D1.JPG" alt="Data Table 1 (Raw Data)" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Data Table 1 (Raw Data)&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Take note that I have 2 types of Design : D1 and C1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Split this data by "STEP" and "Shift" as the splitted column.Rema. Unexpectedly, I am getting the output table as shown below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Output Table" style="width: 593px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/10799iA79F1E983C6E30C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="D2.JPG" alt="Output Table" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Output Table&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Take note that in the Output table, "Design" column. D1's were missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone point out what could cause to this? I am using JMP 13 version . Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:13:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57824#M32177</guid>
      <dc:creator>switzal87</dc:creator>
      <dc:date>2023-06-10T23:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed! Incomplete Details when using SPLIT column</title>
      <link>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57825#M32178</link>
      <description>&lt;P&gt;These results is exactly what I would expect.&amp;nbsp; If you notice, all columns that were not referenced in either te Split By, Split Columns, or Group selection boxes and have specified to be kept, will have the same number of rows&amp;nbsp;your Design column.&amp;nbsp; As it happens, it takes the last n number of row as remaining when the split is done.&amp;nbsp; That is, Object, tgt, ExpNum, and Wafernum all have only the last 3 rows of data remaining in the data table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What did you expect the data table to look like?&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 03:11:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57825#M32178</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-05-22T03:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed! Incomplete Details when using SPLIT column</title>
      <link>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57888#M32192</link>
      <description>&lt;P&gt;Jim (txnelson) provided you the solution to your problem.&amp;nbsp; This is just an added hint. The data looks like a within wafer (litho, implant, test ?) experiment. Your problem is the most commonly made mistake with Split. As Jim noted, you need a unique group specification. Each defined group gets 1 row.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am guessing based upon the portion of the table you displayed that this might be the specification you might need using JSL.&amp;nbsp; If you are doing this via the user interface, specify the columns accordingly.&amp;nbsp; If each object "gets" all 3 steps, then use this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; Split(
	Split By( :Step ),
	Split( :Shift ),
	Group(:expNum, :WAFERNUM, :Design, :Object, :tgt)
	remaining columns( drop all )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 19:15:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/57888#M32192</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-05-22T19:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed! Incomplete Details when using SPLIT column</title>
      <link>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/58353#M32340</link>
      <description>&lt;P&gt;Thanks for the explaination! I now got it how it would work!&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 07:27:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/58353#M32340</guid>
      <dc:creator>switzal87</dc:creator>
      <dc:date>2018-05-28T07:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed! Incomplete Details when using SPLIT column</title>
      <link>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/58354#M32341</link>
      <description>&lt;P&gt;Thanks for this! Looks like I missed the "Group by ()" line. My script now works as it should be.&lt;/P&gt;&lt;PRE class=" language-jsl"&gt;&lt;CODE class="  language-jsl"&gt;dt &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token messages"&gt; Split&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
	Split By&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Step &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
	Split&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Shift &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
	&lt;FONT color="#000080"&gt;Group&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;expNum&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;WAFERNUM&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Design&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;Object&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;:&lt;/SPAN&gt;tgt&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;/FONT&gt;
	remaining columns&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; drop all &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 07:30:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-Needed-Incomplete-Details-when-using-SPLIT-column/m-p/58354#M32341</guid>
      <dc:creator>switzal87</dc:creator>
      <dc:date>2018-05-28T07:30:54Z</dc:date>
    </item>
  </channel>
</rss>

