<?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 speed up Data Table Operations (e.g Stack, Split, ...)? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933621#M108990</link>
    <description>&lt;P&gt;And if this is how the data really looks like&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Pick your "duplicate" columns&lt;/LI&gt;
&lt;LI&gt;Make a subset with them + Id column (might have to create one if you don't already have one)&lt;/LI&gt;
&lt;LI&gt;Drop rows which have missing values&lt;/LI&gt;
&lt;LI&gt;Rename your columns to be same in both tables (+drop extra columns)&lt;/LI&gt;
&lt;LI&gt;Use Update on the original table with the ID column&lt;/LI&gt;
&lt;LI&gt;Close the subset&lt;/LI&gt;
&lt;/OL&gt;</description>
    <pubDate>Tue, 03 Mar 2026 14:54:29 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2026-03-03T14:54:29Z</dc:date>
    <item>
      <title>How to speed up Data Table Operations (e.g Stack, Split, ...)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933567#M108977</link>
      <description>&lt;P&gt;I often need to Stack very large tables with millions of rows, do some operation and then Split the table.&lt;BR /&gt;What options are there to speed all this up besides working with "invisible" data tables in the jsl code?&lt;BR /&gt;&lt;BR /&gt;I'm familiar with the command Begin/End Data Update&lt;SPAN&gt;, however I'm not sure it's relevant here or has any improvement on top of invisible tables.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 13:27:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933567#M108977</guid>
      <dc:creator>shuey</dc:creator>
      <dc:date>2026-03-03T13:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up Data Table Operations (e.g Stack, Split, ...)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933590#M108979</link>
      <description>&lt;P&gt;Invisible (or Private) are good starting points and then it depends a lot on your tables, sometimes you might be even able to avoid split/stack.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 13:42:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933590#M108979</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-03-03T13:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up Data Table Operations (e.g Stack, Split, ...)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933594#M108981</link>
      <description>&lt;P&gt;My goal is to&amp;nbsp;&lt;SPAN&gt;Coalesce Columns which represent the same column, meaning I want to merge columns which represent the same column. I attached an example table where each of the columns Age, Weight, Height is spread across 2 columns. the goal is to merge each couple of the columns.&lt;BR /&gt;originally I would stack the columns, cut out the relevant part (Age/Weight/Height) and then split back, however this becomes a problem with very large data tables.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 14:18:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933594#M108981</guid>
      <dc:creator>shuey</dc:creator>
      <dc:date>2026-03-03T14:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up Data Table Operations (e.g Stack, Split, ...)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933610#M108984</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;Have you tried&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/19.0/#page/jmp/query-and-join-data-tables-with-jmp-query-builder.shtml" target="_self"&gt;Query Builder?&lt;/A&gt;&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;Sorry, I misunderstood the question. I don't think Query Builder helps here.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 14:55:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933610#M108984</guid>
      <dc:creator>christian-z</dc:creator>
      <dc:date>2026-03-03T14:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up Data Table Operations (e.g Stack, Split, ...)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933616#M108987</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$DOWNLOADS/example_input.jmp");
valid_cols = 4;

m = dt[0,0];
r = Transform Each({vals}, m,
	nonmissing = Where(!IsMissing(vals));
	vals[nonmissing];
);

dt[0, 1::valid_cols] = r;
dt &amp;lt;&amp;lt; Delete Columns(valid_cols::N Cols(dt));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Mar 2026 14:44:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933616#M108987</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-03-03T14:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up Data Table Operations (e.g Stack, Split, ...)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933621#M108990</link>
      <description>&lt;P&gt;And if this is how the data really looks like&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Pick your "duplicate" columns&lt;/LI&gt;
&lt;LI&gt;Make a subset with them + Id column (might have to create one if you don't already have one)&lt;/LI&gt;
&lt;LI&gt;Drop rows which have missing values&lt;/LI&gt;
&lt;LI&gt;Rename your columns to be same in both tables (+drop extra columns)&lt;/LI&gt;
&lt;LI&gt;Use Update on the original table with the ID column&lt;/LI&gt;
&lt;LI&gt;Close the subset&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 03 Mar 2026 14:54:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-speed-up-Data-Table-Operations-e-g-Stack-Split/m-p/933621#M108990</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-03-03T14:54:29Z</dc:date>
    </item>
  </channel>
</rss>

