<?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 Is it possible to generate a Python script for the eigenfuctions &amp;amp; scores of Funcional Data Explorer in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/846462#M102117</link>
    <description>&lt;P&gt;In R&amp;amp;D we developed an excellent wavelets model for NIR spectra; is it possible to transfer to Python so that implementation in production&amp;nbsp; NIR online control is possible? If yes what are the different steps?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Mar 2025 14:04:11 GMT</pubDate>
    <dc:creator>frankderuyck</dc:creator>
    <dc:date>2025-03-06T14:04:11Z</dc:date>
    <item>
      <title>Is it possible to generate a Python script for the eigenfuctions &amp; scores of Funcional Data Explorer</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/846462#M102117</link>
      <description>&lt;P&gt;In R&amp;amp;D we developed an excellent wavelets model for NIR spectra; is it possible to transfer to Python so that implementation in production&amp;nbsp; NIR online control is possible? If yes what are the different steps?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 14:04:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/846462#M102117</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2025-03-06T14:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to generate a Python script for the eigenfuctions &amp; scores of Funcional Data Explorer</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/846960#M102170</link>
      <description>&lt;P&gt;For discussion, a lot more detail is needed on what you are asking / attempting.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Is your wavelet model in JSL? &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Transfer to Python are we talking the model itself, or the data output of the model?&lt;/LI&gt;
&lt;LI&gt;NIR - ? Near Infrared?&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;...&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;More details please&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 16:04:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/846960#M102170</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-03-10T16:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to generate a Python script for the eigenfuctions &amp; scores of Funcional Data Explorer</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/848100#M102322</link>
      <description>&lt;P&gt;NIR stands for Near Infrared Spectroscopy, in manufacturing it is used for online process control. We would like to perform SPC on the eigenfunction scores "YFPC". In R&amp;amp;D we developed a good FPCA wavelet model. We now want to apply it for the YFPCA score generation of production NIR spectra that can be used for online SPC or a concept equivalent to Model based&amp;nbsp; Multivariate SPC.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 06:45:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/848100#M102322</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2025-03-17T06:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to generate a Python script for the eigenfuctions &amp; scores of Funcional Data Explorer</title>
      <link>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/854770#M102637</link>
      <description>&lt;P&gt;In general, using Python from JMP is basically the same as using Python standalone. &amp;nbsp;With our jpip wrapper on Python's pip you can install external Python packages into JMP's private isolated site-packages directory. Think of it as a JMP specific virtual environment. You can write pure Python code, open edit and run from a Python specific script editor within JMP. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;The advantage of running your Python code within JMP is the &lt;EM&gt;&lt;STRONG&gt;import jmp&lt;/STRONG&gt;&lt;/EM&gt; package that is a built-in package, and other code we continue to add. &amp;nbsp;This provides a Python interface to JMP DataTables, and other JMP functionality directly from Python. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can write code that can create, read, and write JMP data tables from Python. Additionally, since JSL has Python Submit( "python code "); and the jmp package has a jmp.run_jsl( ' jsl code here' ) scripts can work across the language barrier.&lt;/P&gt;
&lt;P&gt;Python code can be imported by Python running in JMP, just the same way it would be imported in standalone Python. &amp;nbsp;If it's a valid Python package, jpip can install it into the site-packages directory.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The idea is that anything you can do from Python you can do within JMP + the ability to directly interact with JMP from the Python script.&lt;/P&gt;
&lt;P&gt;I would start with the runnable examples in the Scripting Index. &amp;nbsp;There is an entire top level Python category, plus the JSL Python capabilities which have been present since JMP 14. &amp;nbsp;The interface from Python to JMP and JMP data tables exists only within the running JMP environment. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;We hope the JMP Python environment is enticing enough that you run the process from within the JMP environment. &amp;nbsp;Even if you don't run the full process within JMP, the new capabilities will help you be able to export and import data from JMP to your process.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 21:12:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-it-possible-to-generate-a-Python-script-for-the-eigenfuctions/m-p/854770#M102637</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-03-25T21:12:13Z</dc:date>
    </item>
  </channel>
</rss>

