<?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 Getting 95% from proc freq binomial in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632720#M21125</link>
    <description>&lt;P&gt;Using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc freq data= have;&lt;BR /&gt;by graft;&lt;BR /&gt;table sex BMI_overweight athlete athlete_type_update / nocum norow binomial;&lt;BR /&gt;exact binomial;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;graft is a binary variable, however when I run the code it only produces the CI for one part of the binary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to follow this example: &lt;A href="https://www.lexjansen.com/phuse/2013/sp/SP05.pdf" target="_blank"&gt;https://www.lexjansen.com/phuse/2013/sp/SP05.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In the example by statement is a binary variable that is producing both tx group a and b so I am wondering if anyone knows why my code is only producing the output for 1? Thank you&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2020 16:35:51 GMT</pubDate>
    <dc:creator>GS2</dc:creator>
    <dc:date>2020-03-17T16:35:51Z</dc:date>
    <item>
      <title>Getting 95% from proc freq binomial</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632720#M21125</link>
      <description>&lt;P&gt;Using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc freq data= have;&lt;BR /&gt;by graft;&lt;BR /&gt;table sex BMI_overweight athlete athlete_type_update / nocum norow binomial;&lt;BR /&gt;exact binomial;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;graft is a binary variable, however when I run the code it only produces the CI for one part of the binary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to follow this example: &lt;A href="https://www.lexjansen.com/phuse/2013/sp/SP05.pdf" target="_blank"&gt;https://www.lexjansen.com/phuse/2013/sp/SP05.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In the example by statement is a binary variable that is producing both tx group a and b so I am wondering if anyone knows why my code is only producing the output for 1? Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 16:35:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632720#M21125</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2020-03-17T16:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Getting 95% from proc freq binomial</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632730#M21126</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;graft is a binary variable, however when I run the code it only produces the CI for one part of the binary.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Show us the same output you are seeing.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632730#M21126</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-03-17T17:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Getting 95% from proc freq binomial</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632734#M21127</link>
      <description>&lt;P&gt;You may also want to show us the LOG from running the code. Copy the code and any messages related to the Proc Freq call from the log and paste into a code box opened on the forum with the&lt;STRIKE&gt; {I}&lt;/STRIKE&gt; now &amp;lt;/&amp;gt;&amp;nbsp;or "running man" icon. That will preserve formatting of any messages.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 15:51:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632734#M21127</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-03-18T15:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting 95% from proc freq binomial</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632940#M21141</link>
      <description>&lt;P&gt;Run&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data= have;
table graft;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to see how many values graft actually has. Maybe only one level? (Like all females)&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 12:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632940#M21141</guid>
      <dc:creator>WeiChen</dc:creator>
      <dc:date>2020-03-18T12:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Getting 95% from proc freq binomial</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632941#M21142</link>
      <description>&lt;P&gt;We want to see the OUTPUT. (And&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;wants to see the LOG)&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 12:40:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Getting-95-from-proc-freq-binomial/m-p/632941#M21142</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-03-18T12:40:52Z</dc:date>
    </item>
  </channel>
</rss>

