<?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: Make Into Data Table not working in Script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829429#M101141</link>
    <description>&lt;P&gt;Adding the parentheses fixed it - all these issues were just from a typo. Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2025 22:22:44 GMT</pubDate>
    <dc:creator>Rachael44</dc:creator>
    <dc:date>2025-01-27T22:22:44Z</dc:date>
    <item>
      <title>Make Into Data Table not working in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829398#M101138</link>
      <description>&lt;P&gt;I'm running into issues trying to script making a Tabulate object into a new data table. I've tried both syntaxes below, but neither creates the table. I'm using this as one step in a larger workflow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;t2 = tbl &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Grouping Columns( :Treatment ) ),
		Row Table(
			Analysis Columns(
				:"Attribute 1"n,
				:"Attribute 2"n,
				:"Attribute 3"n,
				:"Attribute 4"n,
				:"Attribute 5"n, :"Attribute 6"n,
				:"Attribute 7"n, :"Attribute 8"n,
				:"Attribute 9"n,
				:"Attribute 10"n, :"Attribute 11"n
			),
			Statistics( Mean )
		)
	),
	Local Data Filter(
		Mode( Show( 0 ) ),
		Add Filter( columns( :A or B), Where( :A or B == "A" ) )
	),
)) &amp;lt;&amp;lt; Make Into Data Table();&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;t2 = tbl &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Grouping Columns( :Treatment ) ),
		Row Table(
			Analysis Columns(
				:"Attribute 1"n,
				:"Attribute 2"n,
				:"Attribute 3"n,
				:"Attribute 4"n,
				:"Attribute 5"n, :"Attribute 6"n,
				:"Attribute 7"n, :"Attribute 8"n,
				:"Attribute 9"n,
				:"Attribute 10"n, :"Attribute 11"n
			),
			Statistics( Mean )
		)
	),
	Local Data Filter(
		Mode( Show( 0 ) ),
		Add Filter( columns( :A or B), Where( :A or B == "A" ) )
	),
));

Wait(1);

t2 &amp;lt;&amp;lt; Make Into Data Table();

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I'm on JMP 17.2.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 20:58:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829398#M101138</guid>
      <dc:creator>Rachael44</dc:creator>
      <dc:date>2025-01-27T20:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Make Into Data Table not working in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829411#M101140</link>
      <description>&lt;P&gt;Hm, interesting.&lt;BR /&gt;&lt;BR /&gt;In the first example, when you add some brackets it should work. Without the brackets you send the message to the table and not to the Tabulate object.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

(dt &amp;lt;&amp;lt; Tabulate(
		Add Table(
			Column Table( Analysis Columns( :height ) ),
			Row Table( Grouping Columns( :sex ) )
		)
	)) &amp;lt;&amp;lt; Make Into Data Table();&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second option should work. Maybe there is a typo?&lt;/P&gt;&lt;P&gt;The easiest way:&lt;BR /&gt;use the gui, then go to the log and "steal the code" .&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 21:30:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829411#M101140</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-01-27T21:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Make Into Data Table not working in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829429#M101141</link>
      <description>&lt;P&gt;Adding the parentheses fixed it - all these issues were just from a typo. Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 22:22:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-Into-Data-Table-not-working-in-Script/m-p/829429#M101141</guid>
      <dc:creator>Rachael44</dc:creator>
      <dc:date>2025-01-27T22:22:44Z</dc:date>
    </item>
  </channel>
</rss>

