<?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: How Do I Make a Data Column Numeric Continuous in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253791#M49836</link>
    <description>&lt;P&gt;I don't know why it is not working for you, but it is a simple fix, just separate out the Modeling Type into a separate statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;column("InstHead_Serial") &amp;lt;&amp;lt; data type(numeric,format("Best"));
column("InstHead_Serial") &amp;lt;&amp;lt; modeling type(continuous);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 23 Mar 2020 15:37:38 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-03-23T15:37:38Z</dc:date>
    <item>
      <title>How Do I Make a Data Column Numeric Continuous</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253676#M49808</link>
      <description>&lt;P&gt;I've been stumbling over this and haven't been able to find the proper syntax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my data I have a column titled "InstHead_Serial", which is always a numeric value of 6 numeric characters, with no decimal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to treat the data as numeric in my analysis, but when it gets pulled in from our database it is character type data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've been trying many permutations of the command below to convert the data type to numeric/continuous, with no avail.&amp;nbsp; If someone can help by providing the right syntax, it will be very helpful; thanks in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column( "InstHead_Serial" ) &amp;lt;&amp;lt; data type( numeric, continuous, Format( "" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:26:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253676#M49808</guid>
      <dc:creator>Tom_Watson</dc:creator>
      <dc:date>2023-06-09T23:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I Make a Data Column Numeric Continuous</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253678#M49809</link>
      <description>&lt;P&gt;This should give you what you want&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;column("InstHead_Serial") &amp;lt;&amp;lt; data type(numeric,continuous,format("Fixed Dec", 6,0));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;column("InstHead_Serial") &amp;lt;&amp;lt; data type(numeric,continuous,format("Best"));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Mar 2020 03:33:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253678#M49809</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-23T03:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I Make a Data Column Numeric Continuous</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253784#M49833</link>
      <description>&lt;P&gt;Thanks Jim!&lt;/P&gt;&lt;P&gt;I tried both of these format types and they both result in the following outcome:&lt;/P&gt;&lt;P&gt;Data Type is changed from character to numeric&lt;/P&gt;&lt;P&gt;Format is changed to either Fix Dec or best per the script recipe you provided&lt;/P&gt;&lt;P&gt;Modeling Type remains as "Nominal" vs "Continuous"; I tried the following:&lt;/P&gt;&lt;P&gt;, Continuous,&amp;nbsp;&lt;/P&gt;&lt;P&gt;, "Continuous",&amp;nbsp;&lt;/P&gt;&lt;P&gt;, Modeling Type ("Continuous")&lt;/P&gt;&lt;P&gt;, Modeling Type (Continuous)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm able to manually go into the data table and select the column and change the column info to Continuous, so it seems like something should work, but nothing I've tried so far.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy to try more ideas!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 15:26:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253784#M49833</guid>
      <dc:creator>Tom_Watson</dc:creator>
      <dc:date>2020-03-23T15:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I Make a Data Column Numeric Continuous</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253791#M49836</link>
      <description>&lt;P&gt;I don't know why it is not working for you, but it is a simple fix, just separate out the Modeling Type into a separate statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;column("InstHead_Serial") &amp;lt;&amp;lt; data type(numeric,format("Best"));
column("InstHead_Serial") &amp;lt;&amp;lt; modeling type(continuous);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Mar 2020 15:37:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253791#M49836</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-23T15:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: How Do I Make a Data Column Numeric Continuous</title>
      <link>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253865#M49848</link>
      <description>&lt;P&gt;That did it; awesome and thank you very much!!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 00:48:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-Do-I-Make-a-Data-Column-Numeric-Continuous/m-p/253865#M49848</guid>
      <dc:creator>Tom_Watson</dc:creator>
      <dc:date>2020-03-24T00:48:02Z</dc:date>
    </item>
  </channel>
</rss>

