<?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 to find Max and Min values for the probability ? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458419#M23922</link>
    <description>&lt;P&gt;Please note that the option is CL=, not C1=. CL stands for Confidence Limits. Option EXACT&amp;nbsp;requests one of the methods available to compute the confidence&amp;nbsp;limits&amp;nbsp;for the binomial proportion estimates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer to the &lt;STRONG&gt;proc freq&lt;/STRONG&gt; documentation for details.&lt;/P&gt;</description>
    <pubDate>Sun, 29 Apr 2018 04:15:37 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2018-04-29T04:15:37Z</dc:date>
    <item>
      <title>How to find Max and Min values for the probability ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458356#M23912</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm a beginner in SAS.... &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could you please clarify on below -&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How to check Max and Min values for a probability in SAS ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Which SAS procedure I should use ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Version --&amp;gt; Release: 3.6 (Basic Edition)&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Senthilkumar Ks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 14:27:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458356#M23912</guid>
      <dc:creator>Senthil_SAS</dc:creator>
      <dc:date>2018-04-28T14:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Max and Min values for the probability ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458365#M23913</link>
      <description>&lt;P&gt;More information is needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Describe the process you want to use. Also, please describe what probabilities are you referring to? Probabilities that you are calculating? How are you calculating them? Where are they stored?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 15:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458365#M23913</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-04-28T15:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Max and Min values for the probability ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458397#M23919</link>
      <description>&lt;P&gt;If you want to estimate a proportion and its conficence limits, consider using proc freq with the binomial option. An example estimating the proportion of the sexes in dataset sashelp.class:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=sashelp.class;
table sex / binomial(cl=exact);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;                                The FREQ Procedure

                                              Cumulative    Cumulative
              Sex    Frequency     Percent     Frequency      Percent
              --------------------------------------------------------
              F             9       47.37             9        47.37
              M            10       52.63            19       100.00


                                Binomial Proportion
                                      Sex = F

                               Proportion      0.4737
                               ASE             0.1145

                   Confidence Limits for the Binomial Proportion
                                Proportion = 0.4737

                  Type                       95% Confidence Limits

                  Clopper-Pearson (Exact)    0.2445         0.7114

                            Test of H0: Proportion = 0.5

                          ASE under H0              0.1147
                          Z                        -0.2294
                          One-sided Pr &amp;lt;  Z         0.4093
                          Two-sided Pr &amp;gt; |Z|        0.8185

                                  Sample Size = 19
&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Apr 2018 20:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458397#M23919</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-04-28T20:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Max and Min values for the probability ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458414#M23921</link>
      <description>&lt;P&gt;Thank you...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please explain below piece of code ? what is C1 stands for and the value 'exact'&amp;nbsp; ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;binomial&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;cl&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;ex&lt;/SPAN&gt;act&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;Senthilkumar KS&lt;/P&gt;</description>
      <pubDate>Sun, 29 Apr 2018 01:46:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458414#M23921</guid>
      <dc:creator>Senthil_SAS</dc:creator>
      <dc:date>2018-04-29T01:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to find Max and Min values for the probability ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458419#M23922</link>
      <description>&lt;P&gt;Please note that the option is CL=, not C1=. CL stands for Confidence Limits. Option EXACT&amp;nbsp;requests one of the methods available to compute the confidence&amp;nbsp;limits&amp;nbsp;for the binomial proportion estimates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please refer to the &lt;STRONG&gt;proc freq&lt;/STRONG&gt; documentation for details.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Apr 2018 04:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-find-Max-and-Min-values-for-the-probability/m-p/458419#M23922</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-04-29T04:15:37Z</dc:date>
    </item>
  </channel>
</rss>

