<?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: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910183#M106910</link>
    <description>&lt;P&gt;The screenshot was an example, I have 100s of columns :\&lt;/img&gt; , with inconsistent formatting in the source data . Thanks btw&lt;/P&gt;</description>
    <pubDate>Tue, 28 Oct 2025 11:11:18 GMT</pubDate>
    <dc:creator>zetaVagabond1</dc:creator>
    <dc:date>2025-10-28T11:11:18Z</dc:date>
    <item>
      <title>Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908156#M106643</link>
      <description>&lt;P data-start="266" data-end="636"&gt;&lt;STRONG&gt;Context:&lt;/STRONG&gt;&lt;BR data-start="288" data-end="291" /&gt;I am using JMP 18 with Python integration to merge multiple datasets. The merge and processing in Python works correctly using pandas, but when I try to send the final pandas DataFrame back to JMP using &lt;CODE data-start="494" data-end="508"&gt;Python Get()&lt;/CODE&gt;, the resulting JMP Data Table is empty. I want to create a JMP table from my pandas DataFrame in Python and access it in JSL.&lt;/P&gt;
&lt;P data-start="638" data-end="671"&gt;&lt;STRONG data-start="638" data-end="669"&gt;Example of What I’m Trying:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;STRONG data-start="638" data-end="669"&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;PRE&gt;// Send JMP tables to Python
Python Send(jmp_table1);
Python Send(jmp_table2);

// Python processing
Python Submit("
import pandas as pd

def jmp_to_pandas(jmp_table):
    cols = list(jmp_table)
    data_dict = {}
    for col in cols:
        data_dict[col.name] = list(col)
    return pd.DataFrame(data_dict)

# Convert JMP tables to pandas DataFrames
df1 = convert_jmp_to_pandas(jmp_table1)
df2 = convert_jmp_to_pandas(jmp_table2)

# Merge tables
merged_df = pd.merge_asof(df2, df1, left_on='Time', right_on='Time', direction='nearest')
");

// Attempt to bring merged DataFrame back to JMP
dt_merged = Python Get(merged_df);
dt_merged &amp;lt;&amp;lt; Set Name("Merged_Data");
dt_merged &amp;lt;&amp;lt; Show Window;


&lt;/PRE&gt;
&lt;PRE&gt;&lt;STRONG data-start="638" data-end="669"&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P data-start="1203" data-end="1226"&gt;&lt;STRONG data-start="1203" data-end="1224"&gt;Problem Observed:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL data-start="1227" data-end="1416"&gt;
&lt;LI data-start="1227" data-end="1275"&gt;
&lt;P data-start="1229" data-end="1275"&gt;&lt;CODE data-start="1229" data-end="1240"&gt;dt_merged&lt;/CODE&gt; is created but contains no data. &lt;EM&gt;[but the data frame is generated as I can save it to csv and use it]&lt;/EM&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1276" data-end="1336"&gt;
&lt;P data-start="1278" data-end="1336"&gt;Using &lt;CODE data-start="1284" data-end="1292"&gt;global&lt;/CODE&gt; in Python does not seem to fix the issue.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1337" data-end="1416"&gt;
&lt;P data-start="1339" data-end="1416"&gt;&lt;CODE data-start="1339" data-end="1353"&gt;Python Get()&lt;/CODE&gt; does not appear to recognize the pandas DataFrame correctly.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1418" data-end="1436"&gt;&lt;STRONG data-start="1418" data-end="1434"&gt;What I Want:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL data-start="1437" data-end="1640"&gt;
&lt;LI data-start="1437" data-end="1497"&gt;
&lt;P data-start="1439" data-end="1497"&gt;Convert a pandas DataFrame into a JMP table from Python.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1498" data-end="1577"&gt;
&lt;P data-start="1500" data-end="1577"&gt;Access it in JSL with proper name, show the window, and manipulate columns.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1578" data-end="1640"&gt;
&lt;P data-start="1580" data-end="1640"&gt;Avoid creating empty tables and maintain all rows/columns.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1642" data-end="1684"&gt;&lt;STRONG data-start="1642" data-end="1682"&gt;Potential Solutions I’m Considering:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL data-start="1685" data-end="1892"&gt;
&lt;LI data-start="1685" data-end="1744"&gt;
&lt;P data-start="1687" data-end="1744"&gt;Exporting to CSV from Python and then importing to JMP - &lt;STRONG&gt;tried and works but it's something I don't want.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1745" data-end="1815"&gt;
&lt;P data-start="1747" data-end="1815"&gt;Ensuring the DataFrame is declared &lt;CODE data-start="1782" data-end="1790"&gt;global&lt;/CODE&gt; before &lt;CODE data-start="1798" data-end="1812"&gt;Python Get()&lt;/CODE&gt;. - &lt;STRONG&gt;didn't work&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1894" data-end="1912"&gt;&lt;STRONG data-start="1894" data-end="1910"&gt;Environment:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL data-start="1913" data-end="1949"&gt;
&lt;LI data-start="1913" data-end="1923"&gt;
&lt;P data-start="1915" data-end="1923"&gt;JMP 18&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1924" data-end="1949"&gt;
&lt;P data-start="1926" data-end="1949"&gt;Python 3.x (embedded)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1924" data-end="1949"&gt;Using inside a JSL script&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1951" data-end="2068"&gt;Any guidance or working examples of sending pandas DataFrames back to JMP from Python would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 08:49:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908156#M106643</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-10-17T08:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908173#M106644</link>
      <description>&lt;P&gt;Check out the "Building a Pandas DataFrame by Looping Through Data Table Columns" example from&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/18.2/index.shtml#page/jmp/replicating-pandas-dataframe-transfer-methods.shtml" target="_blank" rel="noopener"&gt; Scripting Guide &amp;gt; Python &amp;gt; Creating a Pandas DataFrame from a JMP Data Table&lt;/A&gt;&amp;nbsp;. Also I think in JMP19 this is easier&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Python-Dataframe-to-JMP-Datatable-without-intermediate-csv/idi-p/326397" target="_blank" rel="noopener"&gt; Python Dataframe to JMP Datatable without intermediate csv (JMP Wish List)&lt;/A&gt;&amp;nbsp;but I haven't tried yet due too multiple issues with JMP19.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 09:07:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908173#M106644</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-17T09:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908266#M106655</link>
      <description>&lt;P&gt;Your dt_merged does contain data, it does not contain a view.&lt;/P&gt;
&lt;P&gt;use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;dt_merged &amp;lt;&amp;lt; &lt;/SPAN&gt;New Data View&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;instead of&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;dt_merged &amp;lt;&amp;lt; Show Window;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The table exists but doesn't yet have an associated window. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also note that in JMP 18 Python Get( df ) does use dataframe -&amp;gt; CSV &amp;nbsp; &amp;nbsp;CSV -&amp;gt; data_table internally just like JMP 14-17 did. &amp;nbsp;Only the JMP data table has live access to the data across JMP / Python boundaries.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In JMP 19 the situation is much better. &amp;nbsp;JMP supports the Portable Dataframe Protocol and it's a 1 line of code to go from a JMP dt =&amp;gt; a pandas DataFrame and another 1 line to go DataFrame to DataTable. &amp;nbsp;This works for any dataframe like package that supports the DataFrame Protocol and the conversion occurs in memory.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Your other choice is creating the merged data table in Python using the jmp.DataTable APIs and walking the dataframe columns creating JMP columns one by one in the new data table. &amp;nbsp;Looks like you have time data as part of the tables. &amp;nbsp;This takes care to get correct. &amp;nbsp;In JMP 14-18 you have to marshal between JMP's&amp;nbsp;&lt;/SPAN&gt;data time representation and Python's data time representation. Epoch date for JMP is Jan 1, 1904 ( same as Excel on the Mac) vs Python's Epoch Date is Jan 1, 1970. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;JMP 19 properly marshals datetime values across the JSL / Python boundaries.&lt;/P&gt;
&lt;P&gt;There are examples in the 'Python' section of the scripting index, for the&amp;nbsp;&lt;STRONG&gt;jmp&lt;/STRONG&gt; import package.&lt;/P&gt;
&lt;P&gt;I would highly recommend updating to JMP 19. &amp;nbsp;JMP 18 was a foundational change to Python Integration in JMP . &amp;nbsp;While JMP 18's support was not as complete as we would have liked, it provided so much capability we did not want to hold off until JMP 19. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 13:51:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908266#M106655</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-10-17T13:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908267#M106656</link>
      <description>&lt;P&gt;I also want to point out that that the jmp.DataTable object is iteratable so you can directly use jmp_table in your for loop. It already behaves like a list of columns&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;def jmp_to_pandas(jmp_table):
    data_dict = {}
    for col in jmp_table:
        data_dict[col.name] = list(col)
    return pd.DataFrame(data_dict)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 14:03:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/908267#M106656</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-10-17T14:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910139#M106899</link>
      <description>&lt;P&gt;I did observe the dates in my dataframe are quite bizzare please refer the screenshot. this is date format and only few are affected, date-time doesn't seem to be affected.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 06:47:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910139#M106899</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-10-28T06:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910142#M106900</link>
      <description>&lt;P&gt;This is date in seconds. you can display any number as date by changing the column settings:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1761635745073.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/85881i8274E22492535D92/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1761635745073.png" alt="hogi_0-1761635745073.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 07:15:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910142#M106900</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-28T07:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910166#M106907</link>
      <description>&lt;P&gt;Hey thanks, I figured this out but I am working with jsl and python code in between. Is there a better way to take care of this in the code itself.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 - process in python using epoch time offset&lt;/P&gt;
&lt;P&gt;2- reassign the column format&amp;nbsp; to each columns in the jsl code. [tedious]&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 09:32:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910166#M106907</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-10-28T09:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910176#M106908</link>
      <description>&lt;OL&gt;
&lt;LI&gt;&lt;LI-MESSAGE title="Unix Timestamp to Real Date &amp;amp; time" uid="14947" url="https://community.jmp.com/t5/Discussions/Unix-Timestamp-to-Real-Date-time/m-p/14947#U14947" 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;/LI&gt;
&lt;LI&gt;&lt;CODE class=" language-jsl"&gt;&lt;BR /&gt;:col &amp;lt;&amp;lt; Format( "yyyy-mm-dd" );&lt;/CODE&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 07:44:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910176#M106908</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-29T07:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910183#M106910</link>
      <description>&lt;P&gt;The screenshot was an example, I have 100s of columns :\&lt;/img&gt; , with inconsistent formatting in the source data . Thanks btw&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 11:11:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910183#M106910</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-10-28T11:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910185#M106912</link>
      <description>&lt;P&gt;JMP19?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 11:37:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910185#M106912</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-28T11:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910297#M106926</link>
      <description>&lt;P&gt;JMP 18, org not migrating to JMP19 , I am not sure whether its a test version roll-out&amp;nbsp; or a developed application. I suspect later one.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 02:44:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910297#M106926</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-10-29T02:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910328#M106927</link>
      <description>&lt;P&gt;Maybe wait for JMP19.1 to get some missing features back:&amp;nbsp;&lt;LI-MESSAGE title="Undocumented Secrets" uid="892206" url="https://community.jmp.com/t5/Discussions/Undocumented-Secrets/m-p/892206#U892206" 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;besides that:&lt;BR /&gt;&lt;BR /&gt;one of the reasons to switch to JMP19:&lt;FONT face="courier new,courier"&gt; from_dataframe()&lt;BR /&gt;&lt;/FONT&gt;&lt;LI-MESSAGE title="Going further with Python in JMP 19" uid="898522" url="https://community.jmp.com/t5/JMPer-Cable/Going-further-with-Python-in-JMP-19/m-p/898522#U898522" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;another reason: wonderful improvements in the data grid like Column Tags and Filter Views.&lt;BR /&gt;&lt;LI-MESSAGE title="Organizing and filtering data in the JMP 19 data table" uid="899302" url="https://community.jmp.com/t5/JMPer-Cable/Organizing-and-filtering-data-in-the-JMP-19-data-table/m-p/899302#U899302" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Do you have the chance to install JMP19 "manually" on a test system ?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 05:44:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910328#M106927</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-29T05:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910347#M106928</link>
      <description>&lt;P&gt;Yes , I can do that. I have not done it. Another reason I am not using that is the script compatibility as other users would continue using JMP18. I am already facing quite alot of issues with table referencing and joins.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 08:17:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910347#M106928</guid>
      <dc:creator>zetaVagabond1</dc:creator>
      <dc:date>2025-10-29T08:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910348#M106929</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/63230"&gt;@zetaVagabond1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;I am already facing quite alot of issues with table referencing and joins.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Issues&amp;nbsp; with JMP18&amp;nbsp;&amp;nbsp;vs. JMP17?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 08:19:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910348#M106929</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-29T08:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910439#M106943</link>
      <description>&lt;P&gt;JMP uses a Jan 1, 1904 epoch for time 0 in seconds ( Mac Excel epoch date)&lt;/P&gt;
&lt;P&gt;Python uses the standard UNIX Jan 1, 1970 epoch date for time 0 in seconds.&lt;/P&gt;
&lt;P&gt;JMP 19 properly marshals date time values across JSL / Python boundaries.&lt;/P&gt;
&lt;P&gt;JMP 19 has a &amp;nbsp;dt = jmp.from_dataframe(df) that will create a date table directly from the data frame in memory. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;In JMP 18 the only in-memory choice is to build the columns yourself, looping on the pandas columns and paying attention to date/time conversion. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively, &amp;nbsp;you could go through CSV. &amp;nbsp;That's the way it was done in JMP 14-17. &amp;nbsp;But be aware you can get small binary differences in numerics when going binary -&amp;gt; CSV -&amp;gt; binary. &amp;nbsp;There are samples in JMP 18's SAMPLE_SCRIPTS/Python directory that show how to go the CSV route. &amp;nbsp; &amp;nbsp;Basically, tell pandas to save as csv, then tell JMP to open the CSV.&lt;/P&gt;
&lt;P&gt;I really suggest you upgrade to 19. &amp;nbsp;Dramatic improvements to data table handling have been made in 19.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 18:30:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910439#M106943</guid>
      <dc:creator>Paul_Nelson</dc:creator>
      <dc:date>2025-10-29T18:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issue Sending Pandas DataFrame from Python to JMP 18 Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910447#M106945</link>
      <description>&lt;P&gt;Rory Vaden: How to multiply your time?&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=y2X7c9TUQJ8" target="_blank"&gt;https://www.youtube.com/watch?v=y2X7c9TUQJ8&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1761775294043.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/86009i673873FA0F58432A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1761775294043.png" alt="hogi_0-1761775294043.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here: Wait today for your IT department to switch to JMP19 - maybe invest some effort to convince them.&lt;BR /&gt;Then you can write and use some great code tomorrow.&lt;BR /&gt;&lt;BR /&gt;The alternative is to start today writing code that is already outdated today.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Python with JMP19:&lt;BR /&gt;- easy to code&lt;BR /&gt;- slim&lt;BR /&gt;- much faster&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2025 22:06:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Issue-Sending-Pandas-DataFrame-from-Python-to-JMP-18-Data-Table/m-p/910447#M106945</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-29T22:06:02Z</dc:date>
    </item>
  </channel>
</rss>

