<?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 Equivalent for SAS of the Excel function norm.dist in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Equivalent-for-SAS-of-the-Excel-function-norm-dist/m-p/640481#M190791</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I wonder under a data statement, there is a function equivalent to NORM.DIST from Excel (which returns the non-cumulative probability of x giving an average and a SD).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, for an average of 26 and a SD is 10, I want the variable prob the value&amp;nbsp;0.001752 if x=1,&amp;nbsp;0.002239 if x=2, etc.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Apr 2020 16:15:35 GMT</pubDate>
    <dc:creator>Demographer</dc:creator>
    <dc:date>2020-04-16T16:15:35Z</dc:date>
    <item>
      <title>Equivalent for SAS of the Excel function norm.dist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Equivalent-for-SAS-of-the-Excel-function-norm-dist/m-p/640481#M190791</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I wonder under a data statement, there is a function equivalent to NORM.DIST from Excel (which returns the non-cumulative probability of x giving an average and a SD).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, for an average of 26 and a SD is 10, I want the variable prob the value&amp;nbsp;0.001752 if x=1,&amp;nbsp;0.002239 if x=2, etc.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 16:15:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Equivalent-for-SAS-of-the-Excel-function-norm-dist/m-p/640481#M190791</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2020-04-16T16:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent for SAS of the Excel function norm.dist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Equivalent-for-SAS-of-the-Excel-function-norm-dist/m-p/640484#M190793</link>
      <description>&lt;P&gt;It looks like you want the PDF function. Example:&lt;/P&gt;
&lt;PRE&gt;data example;
   input x;
   p2 = pdf('normal',x,26,10);
datalines;
1
2
3
26
;
&lt;/PRE&gt;
&lt;P&gt;'normal' is the name of the distribution. SAS will work with a number of distributions. X is the value of interest and the next parameters are the mean and standard deviation. If you leave off the mean and standard deviation SAS will use 0 and 1.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 16:32:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Equivalent-for-SAS-of-the-Excel-function-norm-dist/m-p/640484#M190793</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-04-16T16:32:08Z</dc:date>
    </item>
  </channel>
</rss>

