<?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: Why there is a letter &amp;quot;I&amp;quot; in numeric variable of SAS dataset? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635077#M21275</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... read an amazing paper by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp; on special missings ...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I assume you mean "&lt;A href="https://www.lexjansen.com/nesug/nesug01/ps/ps8009.pdf" target="_self"&gt;How to Represent Missing Data: Special Missing Values vs. 999999999&lt;/A&gt;." Indeed, this is really good and timeless.&amp;nbsp;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Mar 2020 16:16:30 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2020-03-26T16:16:30Z</dc:date>
    <item>
      <title>Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635026#M21265</link>
      <description>&lt;P&gt;I have a SAS dataset where I see a letter "I" (Capital i) in numeric column. What does it mean?&lt;/P&gt;&lt;P&gt;I don't understand as it is a numeric variable and it should not contain this unless it means something else. I tried to add/subtract a number to it and it returned "." (null).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;See below picture:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kumarayas_0-1585225800909.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37389i197D7293DB1BD55B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kumarayas_0-1585225800909.png" alt="kumarayas_0-1585225800909.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here, "Factor" variable in 2nd row has letter "I" as Highlighted. The 3rd variable "db" is same as "factor" but with no format applied.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table properties:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Compressed: CHAR&lt;/P&gt;&lt;P&gt;Encoding: wlatin1 Western (windows)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAS version:&lt;/STRONG&gt; 9.4m5&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 12:46:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635026#M21265</guid>
      <dc:creator>kumarayas</dc:creator>
      <dc:date>2020-03-26T12:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635029#M21267</link>
      <description>&lt;P&gt;Most likely it is a special missing value.&amp;nbsp; In addition to the normal missing value, which is represented by a period, SAS allows 27 special missing values. They are represented in code by period followed by a letter or underscore. In listing/printing the period is not displayed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try something like this to see how many observations have .I for the DB variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=MYDATA;
  where db=.i ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Mar 2020 12:50:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635029#M21267</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-03-26T12:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635030#M21268</link>
      <description>&lt;P&gt;"Special Missing" values are created like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
db = .I;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Mar 2020 12:52:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635030#M21268</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-26T12:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635056#M21270</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/220664"&gt;@kumarayas&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While programmers are free to use special missing values such as &lt;FONT face="courier new,courier"&gt;.I&lt;/FONT&gt; for arbitrary purposes, there are contexts in which&amp;nbsp;&lt;FONT face="courier new,courier"&gt;.I&lt;/FONT&gt;&amp;nbsp;has a special meaning: infinity. For example, the &lt;A href="https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p1xybc7e4naq2dn1shl7w9kbxqqz.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;DIVIDE function&lt;/A&gt; and &lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetVersion=14.3&amp;amp;docsetTarget=statug_ttest_overview.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;PROC TTEST&lt;/A&gt; produce this particular special missing value with the meaning "infinity" in certain situations (see code examples below). But even then it's still a missing value and recognized as such, e.g., by functions like &lt;A href="https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p06ybg84o0asa4n17l9ieauk58hb.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;MISSING&lt;/A&gt;, &lt;A href="https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p0nw8trwk5ooesn1o8zrtd5c6j1t.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;NMISS&lt;/A&gt; or &lt;A href="https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p1tth4ltf640din1ey86ubo2lky2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;CMISS&lt;/A&gt;.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Example 1 (Result: x=.I) */

data test;
x=divide(1,0);
run;

/* Example 2 (Result: UpperCLMean=.I) */

ods output conflimits=cl;
proc ttest data=sashelp.class sides=u;
var age;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Mar 2020 15:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635056#M21270</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-03-26T15:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635064#M21273</link>
      <description>&lt;P&gt;Thank you Sir&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp; for sharing. Always spot on and to the point. Kudos! Interestingly, I ran into something similar a week ago viz. special missings, though was able to figure the details after having read an amazing paper by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp; on special missings for BY GROUP processing that I used for scoring. Cheers!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 15:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635064#M21273</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-03-26T15:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635077#M21275</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... read an amazing paper by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp; on special missings ...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I assume you mean "&lt;A href="https://www.lexjansen.com/nesug/nesug01/ps/ps8009.pdf" target="_self"&gt;How to Represent Missing Data: Special Missing Values vs. 999999999&lt;/A&gt;." Indeed, this is really good and timeless.&amp;nbsp;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 16:16:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635077#M21275</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-03-26T16:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why there is a letter "I" in numeric variable of SAS dataset?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635101#M21276</link>
      <description>&lt;P&gt;Thanks for your kind words about my paper,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;.&amp;nbsp; That was the first UG paper I ever wrote.&amp;nbsp; (I was too scared to present, so I did it as a poster for long-lost NESUG).&amp;nbsp; Always nice to know that a paper has been read!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 19:00:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-there-is-a-letter-quot-I-quot-in-numeric-variable-of-SAS/m-p/635101#M21276</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-03-26T19:00:06Z</dc:date>
    </item>
  </channel>
</rss>

