<?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: Importing a CSV File Into JMP &amp;amp; Turning it Into a Data Table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60660#M33030</link>
    <description>&lt;P&gt;Thanks, much appreciated.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jun 2018 12:47:40 GMT</pubDate>
    <dc:creator>Jaz</dc:creator>
    <dc:date>2018-06-20T12:47:40Z</dc:date>
    <item>
      <title>RE: Importing a CSV File Into JMP &amp; Turning it Into a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60656#M33026</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This must be a very simple question but there is a lack of documentation so I was struggling with how to import CSV files into JMP and save them as data tables?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 12:31:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60656#M33026</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-06-20T12:31:17Z</dc:date>
    </item>
    <item>
      <title>RE: Importing a CSV File Into JMP &amp; Turning it Into a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60658#M33028</link>
      <description>&lt;P&gt;The &lt;A href="https://www.jmp.com/support/help/14/import-text-files.shtml#607966" target="_blank"&gt;Import Text Files&lt;/A&gt; section of &lt;A href="https://www.jmp.com/support/help/14/using-jmp.shtml" target="_self"&gt;Using JMP&lt;/A&gt;&amp;nbsp;explains how to use File-&amp;gt;Open to import text files, including .CSV files.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 12:38:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60658#M33028</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-06-20T12:38:23Z</dc:date>
    </item>
    <item>
      <title>RE: Importing a CSV File Into JMP &amp; Turning it Into a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60660#M33030</link>
      <description>&lt;P&gt;Thanks, much appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 12:47:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60660#M33030</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-06-20T12:47:40Z</dc:date>
    </item>
    <item>
      <title>RE: Importing a CSV File Into JMP &amp; Turning it Into a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60661#M33031</link>
      <description>&lt;P&gt;.csv files are opened directly in JMP.&amp;nbsp; They are treated as just another file to open.&amp;nbsp; So if you are running interactively, you just go to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;File==&amp;gt;Open&lt;/P&gt;
&lt;P&gt;and then navigate to the .csv file you want to open, and then open it&lt;/P&gt;
&lt;P&gt;To save it as a JMP file, just go to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;File==&amp;gt;Save As&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In JSL the following is the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "&amp;lt;path and file name.csv&amp;gt;" );
close( dt, save( "&amp;lt;path and file name.jmp&amp;gt; " ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Documentation for the interactive open and save is in&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Books==&amp;gt;Using JMP&lt;/P&gt;
&lt;P&gt;Documentation for the JSL is in&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Books==&amp;gt;Scripting Guide&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 12:53:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/60661#M33031</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-06-20T12:53:27Z</dc:date>
    </item>
    <item>
      <title>RE: Importing a CSV File Into JMP &amp; Turning it Into a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/193271#M41353</link>
      <description>&lt;P&gt;Been scrolling for hours to find this kind of solution. Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 07:29:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/193271#M41353</guid>
      <dc:creator>AY</dc:creator>
      <dc:date>2019-04-17T07:29:12Z</dc:date>
    </item>
    <item>
      <title>RE: Importing a CSV File Into JMP &amp; Turning it Into a Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/193272#M41354</link>
      <description>&lt;P&gt;Been scrolling for hours to find this kind of solution. Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 07:29:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Importing-a-CSV-File-Into-JMP-amp-Turning-it-Into-a-Data/m-p/193272#M41354</guid>
      <dc:creator>AY</dc:creator>
      <dc:date>2019-04-17T07:29:38Z</dc:date>
    </item>
  </channel>
</rss>

