<?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 Integration in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935763#M109145</link>
    <description>&lt;P&gt;My first question is, what version of JMP are you using?&amp;nbsp; JMP 19 provides improved utilities to access JMP from Python.&lt;/P&gt;
&lt;P&gt;Also, under JMP there are extensive Help pages on the integration of JMP to Python and Python to JMP.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2026 13:45:20 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2026-03-17T13:45:20Z</dc:date>
    <item>
      <title>Python Integration</title>
      <link>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/933372#M109143</link>
      <description>Hey Everyone,&lt;BR /&gt;&lt;BR /&gt;I’m new to JMP but have a lot of experience in Python.&lt;BR /&gt;I’m using JMP as a validated platform for statistical analysis and want to use python to allow easy csv writing etc. &lt;BR /&gt;I’m really struggling with bringing variables into and out of jsl. &lt;BR /&gt;&lt;BR /&gt;I have a JMP data table that I want to do simple analysis on (min,mean max, std, etc) which I have used python to find. I am trying to find a way to use jsl to calculate tolerance interval, process capability and a few other things.&lt;BR /&gt;&lt;BR /&gt;My question comes down to this, how can I go about doing these analyses and then sending those results to an indexable python format. &lt;BR /&gt;All of my attempts following the scripting guide on JMP have resulted in errors that I cannot find a fix for. (Different almost every time)&lt;BR /&gt;I understand this may be my stubbornness for using python but I need to save the results to a csv and I find python indexing and formatting a lot easier. (The lack of consistent errors to try to fix are not helping)&lt;BR /&gt;&lt;BR /&gt;TLDR how do I pull results from a JSL script for later use in python &lt;BR /&gt;&lt;BR /&gt;I’ve tried to use the scripting guide to find</description>
      <pubDate>Mon, 02 Mar 2026 18:53:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/933372#M109143</guid>
      <dc:creator>EoinRegan</dc:creator>
      <dc:date>2026-03-02T18:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Python Integration</title>
      <link>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935761#M109144</link>
      <description>&lt;P&gt;JMP can save to .csv (or text file). What have you used for your sources about the Python Integration? Which version of JMP are you using?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 13:34:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935761#M109144</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-03-17T13:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Python Integration</title>
      <link>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935763#M109145</link>
      <description>&lt;P&gt;My first question is, what version of JMP are you using?&amp;nbsp; JMP 19 provides improved utilities to access JMP from Python.&lt;/P&gt;
&lt;P&gt;Also, under JMP there are extensive Help pages on the integration of JMP to Python and Python to JMP.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 13:45:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935763#M109145</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2026-03-17T13:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Python Integration</title>
      <link>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935829#M109152</link>
      <description>&lt;P class="_tgt transPara grammarSection"&gt;&lt;SPAN class="transSent" data-group="0-0"&gt;It's very simple. You just need to ask gemini3.1 pro questions. It's sure to solve most of the problems.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="_tgt transPara grammarSection"&gt;&lt;SPAN class="transSent" data-group="1-0"&gt;Don't use ChatGPT.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 22:25:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/935829#M109152</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2026-03-17T22:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Python Integration</title>
      <link>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/936495#M109189</link>
      <description>&lt;P&gt;If you are using JMP 18 or newer, look in the scripting index 'Python' category. &amp;nbsp;There are many samples there. &amp;nbsp;Specifically look a the jmp.DataTable object. &amp;nbsp;It behaves as a Python list of columns, and each column behaves as a list of rows. &amp;nbsp;The data table object itself is iterable and is direct in memory access to&amp;nbsp;&lt;STRONG&gt;the&amp;nbsp;&lt;/STRONG&gt;data table.&lt;/P&gt;
&lt;P&gt;See: Python Send(); and Python Get(); JSL functions ( read / write ) JSL variables to/from python.&lt;/P&gt;
&lt;P&gt;In JMP 19 and beyond see jmp.globals and jmp.here dictionaries for accessing JSL global and here namespace variables from Python (read/write)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don't need to go back and forth through CSV, but JSL can read/write CSV, and pandas in Python can directly read and write CSV if that's truly what you want.&lt;/P&gt;
&lt;P&gt;Remember the jmp.DataTable access in Python is 0-based indexing while JSL operates on 1-based indexing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2026 01:46:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Python-Integration/m-p/936495#M109189</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2026-03-21T01:46:45Z</dc:date>
    </item>
  </channel>
</rss>

