<?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: Comma as a Decimal Point in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269087#M52375</link>
    <description>&lt;P&gt;Thanks Massimo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's take the case where you have your localised settings and you haven't asked JMP to ignore regional preferences.&amp;nbsp; In this case decimals will be displayed with a comma.&amp;nbsp; To enter a numeric column directly into a table can you type "3,14" or do you still have to type "3.14" ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Dave&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 May 2020 11:42:20 GMT</pubDate>
    <dc:creator>David_Burnham</dc:creator>
    <dc:date>2020-05-27T11:42:20Z</dc:date>
    <item>
      <title>Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/268962#M52350</link>
      <description>&lt;P&gt;In many/most parts of the world a comma is used to indicate a decimal place rather than a period.&amp;nbsp; I know that JMP supports this through the support of regional settings, but I don't what what happens in practice.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A couple of specific questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Is the regional setting respected when typing data into a JMP table i.e. for PI you would enter 3,14&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. If I use the char function to convert this value to a string would I have "3.14" or "3,14" ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. If I have a table containing commas and they were intended to be decimal places, what is the likely cause (regional settings on the computer or settings inside JMP)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Dave&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 15:13:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/268962#M52350</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2020-05-26T15:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269007#M52357</link>
      <description>&lt;P&gt;Dave,&lt;/P&gt;
&lt;P&gt;I ran into an issue one time where the table only contained commas instead of decimal places. I think it was from an older Mac database or something.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it was a mess, so I used this little bit of python code to "fix" the file before I brought it into JMP&lt;/P&gt;
&lt;P&gt;I suppose a clever person could just submit the python from JMP too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;f = open('/Users/bywing/Byron Wingerd/Jupyter/Data/intable.txt','r')
filedata = f.read()
f.close()
newdata = filedata.replace(".",",")
f = open('/Users/bywing/Byron Wingerd/Jupyter/Data/outtable.txt','w')
f.write(newdata)
f.close()&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 May 2020 21:30:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269007#M52357</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2020-05-26T21:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269060#M52370</link>
      <description>&lt;P&gt;Thanks Byron&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whilst I do have some specific technical issues that I am trying to understand, my view is that I am dealing with my lack of cultural understanding rather than a one-off fix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried customising my regional settings to use "," as the decimal delimiter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now in answer to my questions I have&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1/ No the regional setting is not respected - I have to type 3.14 into a column - although it gets rendered as 3,14&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2/ Instead of using char, I just did 'getValues' and all value have "." as the decimal delimiter even though they are displayed as ","&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The answer to (2) is good news for me in terms of working with scripts; I'm surprised by answer to (1) to the extent that I don't believe I have fully configured my system - perhaps I need to do more than just change a regional setting?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the specific reason for asking the question is that I have a case where, in code, numbers are appearing with "," instead of "." and I'm not sure the root cause of that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 09:34:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269060#M52370</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2020-05-27T09:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269086#M52374</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;
&lt;P&gt;if you are using JMP from a localized OS (in my case Windows 10 Italian) with localized system preferences, and you are running JMP in English language, you can switch from comma notation to dot notation even at run time by selecting: Preferences -&amp;gt; Windows&amp;nbsp; Specific -&amp;gt; Display Language: English.&lt;/P&gt;
&lt;P&gt;There is a check box right below called "&lt;EM&gt;Use JMP language rather than System locale settings for number, date and currency formats".&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;If it is turned on, it will use dots as decimal points and override the normal codification for that OS, otherwise it will use commas as default.&lt;/P&gt;
&lt;P&gt;I use this trick to successfully import US-formatted CSV numeric data, then when I have the JMP tables with Numeric variables I switch back to commas un-clicking the check box above.&lt;/P&gt;
&lt;P&gt;Then I can also switch back Language to Italian - that trick works only with English menu: with localized interface, System and Interface language match, so no way in this case to see a dot as a decimal point.&lt;/P&gt;
&lt;P&gt;Hope this helps, Massimo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 11:12:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269086#M52374</guid>
      <dc:creator>MassimoMartucci</dc:creator>
      <dc:date>2020-05-27T11:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269087#M52375</link>
      <description>&lt;P&gt;Thanks Massimo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's take the case where you have your localised settings and you haven't asked JMP to ignore regional preferences.&amp;nbsp; In this case decimals will be displayed with a comma.&amp;nbsp; To enter a numeric column directly into a table can you type "3,14" or do you still have to type "3.14" ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- Dave&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 11:42:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269087#M52375</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2020-05-27T11:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269101#M52381</link>
      <description>Hi Dave,&lt;BR /&gt;in Italian settings, I have to type "3,14" to have Pi.&lt;BR /&gt;If I type "3.14" I have 03/2014 as a result (just tried)&lt;BR /&gt;Bye, Massimo&lt;BR /&gt;</description>
      <pubDate>Wed, 27 May 2020 13:33:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269101#M52381</guid>
      <dc:creator>MassimoMartucci</dc:creator>
      <dc:date>2020-05-27T13:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269109#M52386</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5351"&gt;@MassimoMartucci&lt;/a&gt;&amp;nbsp; &amp;nbsp;Thanks for posting that clarification. Super helpful to know that's a potential issue out there.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 13:49:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/269109#M52386</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2020-05-27T13:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/393068#M64341</link>
      <description>&lt;P&gt;Hello, I currently have the problem that I need to change all "," to "." in my plots. I am working on a Mac and so I have not found the settings in the preferences.&amp;nbsp;Do you know how to change the settings on a Mac?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 11:33:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/393068#M64341</guid>
      <dc:creator>Nils</dc:creator>
      <dc:date>2021-06-14T11:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Comma as a Decimal Point</title>
      <link>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/888217#M105053</link>
      <description>&lt;P&gt;Do you know why JMP doesn't fix the issues?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Changing the local preferences is the worst thing you can do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just imagine a user doesn't switch back the preferences - and all future analysis in ruined - unnoticed - for some while till somebody notices.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For data import, I created an overview which data can be imported and which import fails:&lt;BR /&gt;&lt;LI-MESSAGE title="txt import - point and comma ?" uid="825586" url="https://community.jmp.com/t5/Discussions/txt-import-point-and-comma/m-p/825586#U825586" 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;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1753024040344.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/78614iF21D36EEED45F1A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1753024040344.png" alt="hogi_0-1753024040344.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Excel, users can specify the decimal separator in the Import window's GUI.&lt;BR /&gt;For each import, the user can select the correct setting, regardless of their preferences or system settings.&lt;BR /&gt;Why is there no such setting in JMP?&lt;BR /&gt;&lt;LI-MESSAGE title="Make decimal separator an option" uid="251768" url="https://community.jmp.com/t5/JMP-Wish-List/Make-decimal-separator-an-option/m-p/251768#U251768" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jul 2025 15:10:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Comma-as-a-Decimal-Point/m-p/888217#M105053</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-07-20T15:10:24Z</dc:date>
    </item>
  </channel>
</rss>

