<?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: python code: Make the generated JMP table invisible? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/845057#M101961</link>
    <description>&lt;P&gt;A optional visibility parameter to jmp.DataTable( ) is coming to JMP 19. &amp;nbsp;Get out the EA and test it out.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2025 20:18:15 GMT</pubDate>
    <dc:creator>Paul_Nelson</dc:creator>
    <dc:date>2025-02-28T20:18:15Z</dc:date>
    <item>
      <title>python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844693#M101895</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;import pandas as pd
import jmp
data = { 'A': [1, 2, 3, 4], 'B': [5.1, 6.2, 7.3, 8.4], 'C': ['x', 'y', 'z', 'w']}
df = pd.DataFrame(data)
dt = jmp.DataTable("MyInvisibleTable", df.shape[0])
for col in df.columns:
    if df[col].dtype in ['int64', 'float64']:
        col_type = jmp.DataType.Numeric
    else:
        col_type = jmp.DataType.Character
    dt.new_column(col, col_type)
    dt[col] = list(df[col])&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Feb 2025 06:19:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844693#M101895</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2025-02-27T06:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844722#M101897</link>
      <description>&lt;P&gt;If I read the documentation correctly, it doesn't seem to be currently possible with jmp.DataTable so you might have to go through run_jsl.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 07:17:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844722#M101897</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-27T07:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844728#M101898</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;How to use JSL implementation to make open JMP tables invisible?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 27 Feb 2025 09:03:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844728#M101898</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2025-02-27T09:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844732#M101899</link>
      <description>&lt;P&gt;With JSL you just use &lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(path, invisible)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and this information can be found from scripting index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1740652150014.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/73402i650724005D27C361/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1740652150014.png" alt="jthi_0-1740652150014.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and from JMP Help &lt;A href="https://www.jmp.com/support/help/en/18.1/#page/jmp/file-functions.shtml?os=win&amp;amp;source=application#ww4959899" target="_blank"&gt;https://www.jmp.com/support/help/en/18.1/#page/jmp/file-functions.shtml?os=win&amp;amp;source=application#ww4959899&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 10:29:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844732#M101899</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-27T10:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844733#M101900</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This I know, python generated JMP table is not required to save, this time can not use JSL to achieve it is not visible?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 10:38:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844733#M101900</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2025-02-27T10:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844735#M101901</link>
      <description>&lt;P&gt;What are you looking for?&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Make JMP generated table invisible?&lt;/LI&gt;
&lt;LI&gt;Make Python integration generated invisible?&lt;/LI&gt;
&lt;LI&gt;Set a table invisible?&lt;/LI&gt;
&lt;LI&gt;Open a table invisible?&lt;/LI&gt;
&lt;LI&gt;...&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 10:46:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844735#M101901</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-27T10:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844737#M101903</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Like this JMP table generated by python code, can't JSL make it invisible without saving it?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 11:02:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844737#M101903</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2025-02-27T11:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844739#M101904</link>
      <description>&lt;P&gt;Use &amp;lt;&amp;lt; Show Window&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; show window(0);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Again found from scripting index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1740654257935.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/73403i1893A937DC39C340/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1740654257935.png" alt="jthi_0-1740654257935.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and JMP help&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/18.1/#page/jmp/window-messages.shtml?os=win&amp;amp;source=application#ww2143931" target="_blank"&gt;https://www.jmp.com/support/help/en/18.1/#page/jmp/window-messages.shtml?os=win&amp;amp;source=application#ww2143931&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 11:04:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/844739#M101904</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-27T11:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/845057#M101961</link>
      <description>&lt;P&gt;A optional visibility parameter to jmp.DataTable( ) is coming to JMP 19. &amp;nbsp;Get out the EA and test it out.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 20:18:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/845057#M101961</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-02-28T20:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: python code: Make the generated JMP table invisible?</title>
      <link>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/845088#M101964</link>
      <description>&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Experts!&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;&lt;P&gt;&amp;nbsp;&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;&lt;P&gt;&amp;nbsp;&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, 01 Mar 2025 00:09:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/python-code-Make-the-generated-JMP-table-invisible/m-p/845088#M101964</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2025-03-01T00:09:55Z</dc:date>
    </item>
  </channel>
</rss>

