<?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: Hiding Intermediate JMP Data Tables in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5263#M5262</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't know if useful, but I use Invisible with success for a similar question.&lt;/P&gt;&lt;P&gt;maybe the difference is that i give a name to the intermediate tables and save them, and later I open them with invisible (I do it in a batch cycle, so i generate several intermediate tables for my needs in different steps, and only in the end I open them to generate the graphs)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2012 19:52:11 GMT</pubDate>
    <dc:creator>dghidoni</dc:creator>
    <dc:date>2012-08-13T19:52:11Z</dc:date>
    <item>
      <title>Hiding Intermediate JMP Data Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5262#M5261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a script that creates a number of intermediate data tables.&amp;nbsp; The final result of the script is a series of bubbles charts.&amp;nbsp; Unfortunately, between the beginning of the script and the displaying of the last bubble chart, all the intermediate tables are also displayed.&amp;nbsp; I don't want to see them -- just the bubble charts.&amp;nbsp; How can I hide the intermediate tables?&amp;nbsp; I tried using Invisible, but this seems to make a table literally invisible to all following uses of it so that errors occur -- the table is not there.&amp;nbsp; Any suggestions for hiding the display of a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Walt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 19:55:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5262#M5261</guid>
      <dc:creator>waltp</dc:creator>
      <dc:date>2012-07-13T19:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Intermediate JMP Data Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5263#M5262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't know if useful, but I use Invisible with success for a similar question.&lt;/P&gt;&lt;P&gt;maybe the difference is that i give a name to the intermediate tables and save them, and later I open them with invisible (I do it in a batch cycle, so i generate several intermediate tables for my needs in different steps, and only in the end I open them to generate the graphs)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2012 19:52:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5263#M5262</guid>
      <dc:creator>dghidoni</dc:creator>
      <dc:date>2012-08-13T19:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Intermediate JMP Data Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5264#M5263</link>
      <description>&lt;P&gt;Make sure you have a variable that references your invisible tables, or else they won't work.&amp;nbsp; This is straight out of the JSL documentation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;If you want to avoid a window appearing when you create a new data table, use the invisible keyword.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For example, to create an invisible table Abc with one column of ten rows,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = newTable("Abc", invisible, newColumn("X"),addRows(10));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: To prevent “lost” data tables created invisibly, you can create an invisible data table only if you assign&lt;BR /&gt;it a reference. If you do create an invisible data table without a reference, JMP immediately destroys it, so&lt;BR /&gt;any further uses of the table result in errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Tip&lt;/STRONG&gt;: Once you are finished with an invisible data table, do not forget to close it. Otherwise, it remains in&lt;BR /&gt;memory until you quit JMP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other thing you can do is to turn a table invisible with the show window(0) command.&amp;nbsp; In the following example the tabulation is invisible, but when I convert it to a table it is not, therefore I use the show window(0) command:&lt;/P&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;surv_tab = surv_dataset &amp;lt;&amp;lt; Tabulate(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Show Control Panel( 0 ),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add Table(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Column Table( Grouping Columns( :Time Period ) ),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Row Table( Grouping Columns( :SOC Name, :HLT Name, :PT Name ) )
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ), invisible
);
surv_pt_main = surv_tab &amp;lt;&amp;lt; make into data table;
surv_tab&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt; close window;
surv_pt_main &amp;lt;&amp;lt; show window(0);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 23:53:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hiding-Intermediate-JMP-Data-Tables/m-p/5264#M5263</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-07-09T23:53:05Z</dc:date>
    </item>
  </channel>
</rss>

