<?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 Notation scientifique dans une variable de type alfanumerique $char10. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911282#M359350</link>
    <description>&lt;P&gt;Bonjour,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;J'ai un ensemble de données&amp;nbsp; "cohorte" qui contient une variable 'id_patient' de type alphanumérique $10., avec des identifiants de patients tels que C959D2D ou "6.09E+203". &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cependant, à l'origine, "6.09E+203" n'était pas en notation scientifique, mais plutôt sous forme de nombre mathématique normal. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Comment puis-je le modifier dans ma table tout en conservant les autres observations avec des lettres intactes ? Mon code est assez long, et ceci est ma table résultante. Je ne suis pas sûre à quel endroit le format a été modifié, donc la solution la plus simple serait de le changer à la fin. Cependant, je ne sais pas comment procéder, pouvez vous m'aider?&amp;nbsp;&lt;BR /&gt;data cohorte;&lt;BR /&gt;input id_patient $;&lt;BR /&gt;datalines;&lt;BR /&gt;6.09E+203&lt;BR /&gt;1C50A210&lt;BR /&gt;;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 15:19:55 GMT</pubDate>
    <dc:creator>agdato</dc:creator>
    <dc:date>2024-01-11T15:19:55Z</dc:date>
    <item>
      <title>Notation scientifique dans une variable de type alfanumerique $char10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911282#M359350</link>
      <description>&lt;P&gt;Bonjour,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;J'ai un ensemble de données&amp;nbsp; "cohorte" qui contient une variable 'id_patient' de type alphanumérique $10., avec des identifiants de patients tels que C959D2D ou "6.09E+203". &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cependant, à l'origine, "6.09E+203" n'était pas en notation scientifique, mais plutôt sous forme de nombre mathématique normal. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Comment puis-je le modifier dans ma table tout en conservant les autres observations avec des lettres intactes ? Mon code est assez long, et ceci est ma table résultante. Je ne suis pas sûre à quel endroit le format a été modifié, donc la solution la plus simple serait de le changer à la fin. Cependant, je ne sais pas comment procéder, pouvez vous m'aider?&amp;nbsp;&lt;BR /&gt;data cohorte;&lt;BR /&gt;input id_patient $;&lt;BR /&gt;datalines;&lt;BR /&gt;6.09E+203&lt;BR /&gt;1C50A210&lt;BR /&gt;;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 15:19:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911282#M359350</guid>
      <dc:creator>agdato</dc:creator>
      <dc:date>2024-01-11T15:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Notation scientifique dans une variable de type alfanumerique $char10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911288#M359353</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;if there is really a SAS format applied on your patient-id then you can remove it at anytime in your dataset with "format&amp;nbsp;&lt;SPAN&gt;id_patient;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But if your variable is a text as in the example you provide, I see no possibility to display the real original value, using the scientific notation displayed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You would have to look at your code and remove the format where it is applied.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Generally I consider it a very bad idea to use formats on ID variables.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 16:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911288#M359353</guid>
      <dc:creator>Oligolas</dc:creator>
      <dc:date>2024-01-11T16:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Notation scientifique dans une variable de type alfanumerique $char10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911297#M359357</link>
      <description>&lt;P&gt;Most likely you read that value as a NUMBER instead of STRING at some point and wrote it back out using BEST format so the long digit string got converted into that string you showed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps that was because of the use of some guessing tool, like EXCEL or PROC IMPORT, to read the original text.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best is to go back to the step that read the value as if it was a number and replace it with a step that reads the value as text instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 16:25:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911297#M359357</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-01-11T16:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Notation scientifique dans une variable de type alfanumerique $char10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911316#M359369</link>
      <description>&lt;P&gt;Je crois que l'ID "6.09E+203" correspond à un ID original qui avait le malheur de ressembler à un nombre exprimé en notation scientifique et que Excel a automatiquement converti en nombre.&lt;/P&gt;
&lt;P&gt;Mais puisque plusieurs IDs, tels que "609E201", "6086E200", "6092E200" ou "60905E199" par exemple, seront convertis dans le même ID "6.09E+203" par Excel, il est impossible de retrouver avec certitude l'ID original.&lt;/P&gt;
&lt;P&gt;Il vous faudra donc, comme suggéré ci-haut, remonter à la source pour recouvrer les ID originaux.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 19:50:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911316#M359369</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2024-01-11T19:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Notation scientifique dans une variable de type alfanumerique $char10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911361#M359384</link>
      <description>&lt;P&gt;Yes. It was exactly that! No way to return on the real ID &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; Thanks a lot !&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2024 10:10:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Notation-scientifique-dans-une-variable-de-type-alfanumerique/m-p/911361#M359384</guid>
      <dc:creator>agdato</dc:creator>
      <dc:date>2024-01-12T10:10:19Z</dc:date>
    </item>
  </channel>
</rss>

