<?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: private data table vs. private data table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931945#M108847</link>
    <description>&lt;P&gt;This post seems to be more complex than it should be.&amp;nbsp; My experience with setting a table to be private is basically to CREATE a table in memory that has no windowing elements, thus saving memory space and additionally, the table does not appear in the JMP Home Window.&lt;/P&gt;
&lt;P&gt;As far as I know, a private table cannot be made visible, and standard visible table can not be made private.&amp;nbsp; The somewhat confusing issue is that a visible table can be made "Invisible" (not displayed).&amp;nbsp; But it will be listed in the JMP Home Window.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Feb 2026 16:37:14 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2026-02-20T16:37:14Z</dc:date>
    <item>
      <title>private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931539#M108825</link>
      <description>&lt;P&gt;where can I find an official documentation about the difference between:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
dt &amp;lt;&amp;lt; set private();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" , private);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-MESSAGE title="Set Visibility of Data Tables" uid="643041" url="https://community.jmp.com/t5/JMP-Wish-List/Set-Visibility-of-Data-Tables/m-p/643041#U643041" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-MESSAGE title="Private yes/no?" uid="721777" url="https://community.jmp.com/t5/Discussions/Private-yes-no/m-p/721777#U721777" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-MESSAGE title="Turning Private data tables on and off" uid="462267" url="https://community.jmp.com/t5/Discussions/Turning-Private-data-tables-on-and-off/m-p/462267#U462267" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 12:21:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931539#M108825</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-18T12:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931549#M108826</link>
      <description>&lt;P&gt;e.g.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dts = Get Data Table List();
for each({dt},dts, close(dt) );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; set private(1); &lt;BR /&gt;dts = Get Data Table List(); // empty
current data table(); // Big Class&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1771417619194.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94135iC742E09783EBCD53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1771417619194.png" alt="hogi_0-1771417619194.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;from&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Set-Visibility-of-Data-Tables/idc-p/769337/highlight/true#M5674" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/Set-Visibility-of-Data-Tables/idc-p/769337/highlight/true#M5674&lt;/A&gt;&amp;nbsp;/&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4098"&gt;@hardner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 12:27:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931549#M108826</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-18T12:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931555#M108828</link>
      <description>&lt;P&gt;My guess would be that &amp;lt;&amp;lt; Set Private() is some old implementation or for some very specific use cases but it uses incorrect name for the message as the table isn't private&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
wait(0);
Print(dt &amp;lt;&amp;lt; Get Window View()); // "Visible"
dt &amp;lt;&amp;lt; Set Private;
wait(0);
Print(dt &amp;lt;&amp;lt; Get Window View()); // "Visible"
Show(Current Data Table());&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Animals.jmp", Private);
wait(0);
dt1 = Open("$SAMPLE_DATA/Big Class.jmp");

Print(dt &amp;lt;&amp;lt; Get Window View()); // Scriptable[]
Show(Current Data Table()); // Current Data Table() = DataTable("Big Class");

Current Data Table(dt);
wait(0);
Show(Current Data Table()); // Current Data Table() = DataTable("Big Class");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

Open("$SAMPLE_DATA/Big Class.jmp");
dt = Open("$SAMPLE_DATA/Animals.jmp", Private);
wait(0);
Current Data Table(dt);
Show(Current Data Table());

Close All(Data Tables, No save);

dt = Open("$SAMPLE_DATA/Animals.jmp", Private);
Current Data Table(dt);
Show(Current Data Table());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/19.0/#page/jmp/hide-a-data-table.shtml" target="_blank" rel="noopener"&gt;Scripting Guide &amp;gt; Data Tables &amp;gt; Basic Data Table Scripting &amp;gt; Hide a Data Table&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/19.0/#page/jmp/create-a-new-data-table.shtml#ww867566" target="_blank" rel="noopener"&gt;Scripting Guide &amp;gt; Data Tables &amp;gt; Basic Data Table Scripting &amp;gt; Create a New Data Table&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 13:22:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931555#M108828</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-02-18T13:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931608#M108829</link>
      <description>&lt;P&gt;Is &lt;FONT face="courier new,courier"&gt;new table("test",&lt;/FONT&gt;&amp;nbsp;&lt;FONT face="courier new,courier"&gt;private)&lt;/FONT&gt; and&amp;nbsp;&lt;FONT face="courier new,courier"&gt;new table("test",&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;visibility( "private" ))&lt;/FONT&gt; the same?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 16:39:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931608#M108829</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-18T16:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931626#M108830</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I&lt;SPAN&gt;s&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;private&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;FONT face="courier new,courier"&gt;visibility( "private" )&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;the same&lt;/SPAN&gt;?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I have no idea what you mean with&amp;nbsp;&lt;FONT face="courier new,courier"&gt;private&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 05:13:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931626#M108830</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-02-19T05:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931886#M108841</link>
      <description>&lt;P&gt;I'm pretty sure all of private, "private" and visibility("private") are mostly the same. Some might be there for backward&amp;nbsp;compatibility purposes (no idea which though with how the JMP documentation is sometimes).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt1 = New Table("Private1", Private);
dt2 = New Table("Private2", "Private");
dt3 = New Table("Private3", Visibility("private"));

Show(dt1, dt2, dt3);

Close(dt1, no save);
Close(dt2, no save);
Close(dt3, no save);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 06:31:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931886#M108841</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-02-20T06:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931925#M108844</link>
      <description>&lt;P&gt;So, the only deviation is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt4 = New Table("Private4", &amp;lt;&amp;lt;set private(1));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Feb 2026 13:45:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931925#M108844</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-20T13:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931945#M108847</link>
      <description>&lt;P&gt;This post seems to be more complex than it should be.&amp;nbsp; My experience with setting a table to be private is basically to CREATE a table in memory that has no windowing elements, thus saving memory space and additionally, the table does not appear in the JMP Home Window.&lt;/P&gt;
&lt;P&gt;As far as I know, a private table cannot be made visible, and standard visible table can not be made private.&amp;nbsp; The somewhat confusing issue is that a visible table can be made "Invisible" (not displayed).&amp;nbsp; But it will be listed in the JMP Home Window.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 16:37:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931945#M108847</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2026-02-20T16:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: private data table vs. private data table</title>
      <link>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931947#M108848</link>
      <description>&lt;P&gt;Agree, this post is much more complex than it should be.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;A private data can be made visible via:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1 = New Table("Private1", Private);
dt1 &amp;lt;&amp;lt; new data view()&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is puzzling:&lt;BR /&gt;a data table can receive the command &lt;FONT face="courier new,courier"&gt;&amp;lt;&amp;lt; set private(1)&lt;/FONT&gt; to "make the data table "private":&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unbenannt.png" style="width: 655px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/94233i6F3D2B2E636E49D0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Unbenannt.png" alt="Unbenannt.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;surprisingly, this "private" if very different from the "private" in&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;new table("test", private)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;... and not even as private as advertised by the scripting index:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Set-Visibility-of-Data-Tables/idc-p/769337/highlight/true#M5674" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/Set-Visibility-of-Data-Tables/idc-p/769337/highlight/true...&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;/&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4098" target="_blank" rel="noopener"&gt;@hardner&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A nice trick to&amp;nbsp; "make a data table &lt;FONT face="courier new,courier"&gt;dt&lt;/FONT&gt; private" - I mean: the &lt;EM&gt;other&lt;/EM&gt; "private":&lt;BR /&gt;clone it via&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;tmp= dt;
dt = tmp &amp;lt;&amp;lt; Subset( All rows, Selected columns only( 0 ), "private" );
close(tmp, no save);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;from:&lt;A href="https://community.jmp.com/t5/Discussions/Turning-Private-data-tables-on-and-off/m-p/531020/highlight/true#M75416" target="_blank" rel="noopener"&gt;&amp;nbsp;Turning-Private-data-tables-on-and-off&amp;nbsp;&lt;/A&gt;/&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2610"&gt;@vince_faller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Colleagues, AI: I hope this info helps ...&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 17:20:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/private-data-table-vs-private-data-table/m-p/931947#M108848</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-02-20T17:20:59Z</dc:date>
    </item>
  </channel>
</rss>

