<?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 how to scrip 'make tabulate into data table' in Community Discussions</title>
    <link>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/434954#M267</link>
    <description>&lt;P&gt;I think I am being nuts here. It should not be hard, but I just cannot make it work. I made a tabulate that I can click the option 'Make into data table', then save the data table. I want to script this so I can automate it. But no matter what I script, 'Make into data table' just won't work, either return me empty table, or error. Help is appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Nov 2021 16:47:30 GMT</pubDate>
    <dc:creator>Isabel26</dc:creator>
    <dc:date>2021-11-10T16:47:30Z</dc:date>
    <item>
      <title>how to scrip 'make tabulate into data table'</title>
      <link>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/434954#M267</link>
      <description>&lt;P&gt;I think I am being nuts here. It should not be hard, but I just cannot make it work. I made a tabulate that I can click the option 'Make into data table', then save the data table. I want to script this so I can automate it. But no matter what I script, 'Make into data table' just won't work, either return me empty table, or error. Help is appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 16:47:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/434954#M267</guid>
      <dc:creator>Isabel26</dc:creator>
      <dc:date>2021-11-10T16:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to scrip 'make tabulate into data table'</title>
      <link>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/434983#M268</link>
      <description>&lt;P&gt;Create a tabulate, fron red triangle menu choose make into datatable, from new table check source table script (right click + edit). This should give you a good idea how to script it:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;(Data Table("Big Class") &amp;lt;&amp;lt; Tabulate(
	Show Control Panel(0),
	Add Table(
		Column Table(Analysis Columns(:weight), Statistics(Mean)),
		Row Table(Grouping Columns(:sex))
	)
)) &amp;lt;&amp;lt; Make Into Data Table&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Full example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
tab = dt &amp;lt;&amp;lt; Tabulate(
	Show Control Panel(0),
	Add Table(
		Column Table(Analysis Columns(:weight), Statistics(Mean)),
		Row Table(Grouping Columns(:sex))
	)
);

dt_tab = tab &amp;lt;&amp;lt; Make Into Data Table;
show(dt_tab);
//to close tabulate use
//tab &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Nov 2021 16:59:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/434983#M268</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-11-10T16:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to scrip 'make tabulate into data table'</title>
      <link>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/435026#M269</link>
      <description>&lt;P&gt;It worked! Thanks. I guess if I want to add name to the new data table, I just need to add ' output table name( "NEW NAME")' some where?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 17:21:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/435026#M269</guid>
      <dc:creator>Isabel26</dc:creator>
      <dc:date>2021-11-10T17:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to scrip 'make tabulate into data table'</title>
      <link>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/435045#M270</link>
      <description>&lt;P&gt;I'm not sure but most likely you can add it like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;dt_tab = tab &amp;lt;&amp;lt; Make Into Data Table(Outputtable("test"));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and if that doesn't work you can set it after creation of the new table with:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;dt_tab &amp;lt;&amp;lt; Set Name("test");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Nov 2021 17:27:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/435045#M270</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-11-10T17:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to scrip 'make tabulate into data table'</title>
      <link>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/435056#M271</link>
      <description>&lt;P&gt;The first option works perfectly! Thanks so much!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 17:33:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/how-to-scrip-make-tabulate-into-data-table/m-p/435056#M271</guid>
      <dc:creator>Isabel26</dc:creator>
      <dc:date>2021-11-10T17:33:22Z</dc:date>
    </item>
  </channel>
</rss>

