<?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: 1E+05 to 100000 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224598#M44634</link>
    <description>&lt;P&gt;You may have to provide your data table and/or script to allow the determination of your issue.&amp;nbsp; But I will guess that it may be because you are specifying a Scientific format for the data in your data table.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Sep 2019 04:22:28 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-09-04T04:22:28Z</dc:date>
    <item>
      <title>1E+05 to 100000</title>
      <link>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224586#M44632</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why the JSL didn't change the 1E+05 to 100000 when I tabulate the data? What can I do?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 03:24:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224586#M44632</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-09-04T03:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: 1E+05 to 100000</title>
      <link>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224596#M44633</link>
      <description>And also the graph that I stimulate. Showing only the front number like 1.01E+05 from my raw data and it shown directly at the graph axis as 1.01E+05.</description>
      <pubDate>Wed, 04 Sep 2019 03:27:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224596#M44633</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-09-04T03:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: 1E+05 to 100000</title>
      <link>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224598#M44634</link>
      <description>&lt;P&gt;You may have to provide your data table and/or script to allow the determination of your issue.&amp;nbsp; But I will guess that it may be because you are specifying a Scientific format for the data in your data table.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 04:22:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224598#M44634</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-09-04T04:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: 1E+05 to 100000</title>
      <link>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224602#M44636</link>
      <description>&lt;P&gt;Thanks nelson. You remind me, is the scientific format issues. I fixed it.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 06:17:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224602#M44636</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-09-04T06:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: 1E+05 to 100000</title>
      <link>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224605#M44637</link>
      <description>&lt;P&gt;The issue is that the data in scientific notation,&amp;nbsp; coming from the .txt files is being interpreted by JMP as character data, not numeric.&amp;nbsp; I am not aware of a method to change that during the reading in of the data, however, it is a simple matter to do that after the data are in the data table.&amp;nbsp; The following modification to your code will make the changes:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:Column 1 &amp;lt;&amp;lt; Set Name( "Frequency" )&amp;lt;&amp;lt;data type(numeric)&amp;lt;&amp;lt;modeling type(continuous)&amp;lt;&amp;lt;format("Best",15,7);
:Column 2 &amp;lt;&amp;lt; Set Name( "S11 Data" )&amp;lt;&amp;lt;data type(numeric)&amp;lt;&amp;lt;modeling type(continuous)&amp;lt;&amp;lt;format("Best",15,7);
:Column 3 &amp;lt;&amp;lt; Set Name( "Result1" );
:Column 4 &amp;lt;&amp;lt; Set Name( "S21 Data" )&amp;lt;&amp;lt;data type(numeric)&amp;lt;&amp;lt;modeling type(continuous)&amp;lt;&amp;lt;format("Best",15,7);
:Column 5 &amp;lt;&amp;lt; Set Name( "Result2" );
:Column 6 &amp;lt;&amp;lt; Set Name( "S22 Data" )&amp;lt;&amp;lt;data type(numeric)&amp;lt;&amp;lt;modeling type(continuous)&amp;lt;&amp;lt;format("Best",15,7);
:Column 7 &amp;lt;&amp;lt; Set Name( "Result3" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please note the format setting.&amp;nbsp; You can change the format to any JMP numeric format, and it will that format the Graph windows will use.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="scientific.PNG" style="width: 649px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/19123i9D68B26B1D68D6E7/image-size/large?v=v2&amp;amp;px=999" role="button" title="scientific.PNG" alt="scientific.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 06:31:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/1E-05-to-100000/m-p/224605#M44637</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-09-04T06:31:59Z</dc:date>
    </item>
  </channel>
</rss>

