<?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 make &amp;quot;private&amp;quot; a data table created from table box in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34287#M20309</link>
    <description>&lt;P&gt;Thanks! the second solution is perfect for my case! I will keep the first one in mind for other uses as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;</description>
    <pubDate>Sun, 08 Jan 2017 07:43:12 GMT</pubDate>
    <dc:creator>matteo_patelmo</dc:creator>
    <dc:date>2017-01-08T07:43:12Z</dc:date>
    <item>
      <title>How to make "private" a data table created from table box</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34285#M20307</link>
      <description>&lt;P&gt;Hello, I'd like to make&amp;nbsp;"private" a data table created from a table box (from Boosted Tree / Column Contributions specifically, but the question is general).&amp;nbsp; I see from the JSL documentation that the "invisible" option is available directly from the &amp;lt;&amp;lt;make into data table message&amp;nbsp;, but I cannot find instructions about the "private" option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In general, is it possibile to change the visibility of a data table into private once it's been created?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using JMP 13 Pro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2017 21:17:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34285#M20307</guid>
      <dc:creator>matteo_patelmo</dc:creator>
      <dc:date>2017-01-07T21:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to make "private" a data table created from table box</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34286#M20308</link>
      <description>&lt;P&gt;One way would be to use the &amp;lt;&amp;lt; Make Data Table(invisible), and then subset that table into a Private table, then finally close the table created with the Make Data Table.&lt;/P&gt;
&lt;P&gt;Below is a simple script that directly creates a private table, by pulling the individual parts from the table box and placing them into the new table.&amp;nbsp; Since the structure of the Column Contributions table is know, this method would be easy to put together.&amp;nbsp; The only change would be that you wouldn't be pointing to an object called "nw"&amp;nbsp; but point to the Report() of the Boosted Tree output&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
nw = New Window( "A Table Box",
	Outline Box( "Sample Table",
		Table Box(
			String Col Box( "Group", {"Group A", "Group B", "Group C"} ),
			Number Col Box( "Row Num", {1, 2, 3} ),
			Number Col Box( "Value", {54, 67, 29} )
		)
	)
);

dtPrivate = New Table( "The Table", private );
dtPrivate &amp;lt;&amp;lt; New Column( (nw[String Col Box( 1 )] &amp;lt;&amp;lt; get heading), character, values( nw[String Col Box( 1 )] &amp;lt;&amp;lt; get ) );
dtPrivate &amp;lt;&amp;lt; New Column( (nw[Number Col Box( 1 )] &amp;lt;&amp;lt; get heading), values( nw[Number Col Box( 1 )] &amp;lt;&amp;lt; get ) );
dtPrivate &amp;lt;&amp;lt; New Column( (nw[Number Col Box( 2 )] &amp;lt;&amp;lt; get heading), values( nw[Number Col Box( 2 )] &amp;lt;&amp;lt; get ) );
dtPrivate &amp;lt;&amp;lt; bivariate( x( :Row Num ), y( :Value ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Jan 2017 22:32:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34286#M20308</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-01-07T22:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to make "private" a data table created from table box</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34287#M20309</link>
      <description>&lt;P&gt;Thanks! the second solution is perfect for my case! I will keep the first one in mind for other uses as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matteo&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2017 07:43:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-quot-private-quot-a-data-table-created-from-table/m-p/34287#M20309</guid>
      <dc:creator>matteo_patelmo</dc:creator>
      <dc:date>2017-01-08T07:43:12Z</dc:date>
    </item>
  </channel>
</rss>

