<?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 save the outcome results from a proc freq? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/508323#M1645</link>
    <description>&lt;P&gt;Hi yes this seems to work. However the main point of the confidence limit are not in the output tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;would like to obtain this information :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Confidence Limits for the Binomial ProportionProportion = 0.0933&lt;BR /&gt;Type95%&amp;nbsp;Confidence&amp;nbsp;Limits&lt;BR /&gt;Clopper-Pearson (Exact) 0.0520 0.1516&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the&amp;nbsp;correct statement to call the confidence interval&amp;nbsp;in the "ods output" ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the tip!!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Oct 2018 13:08:26 GMT</pubDate>
    <dc:creator>juliafervi</dc:creator>
    <dc:date>2018-10-29T13:08:26Z</dc:date>
    <item>
      <title>How to save the outcome results from a proc freq?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/507783#M1511</link>
      <description>&lt;P&gt;Dear all I have the following question:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I save or have direct (calling) acces to the some desired variables obtained using "proc freq / binomial test".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been able to obtain the results in a separeted excel sheet... but that is not what I am looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to be able to call the varibales such as the "p" and the "confidence interval" results for then creating an END RESULT TABLE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Julia&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 15:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/507783#M1511</guid>
      <dc:creator>juliafervi</dc:creator>
      <dc:date>2018-10-26T15:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the outcome results from a proc freq?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/507789#M1513</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output onewayfreqs=freqs binomial=binomial binomialtest=binomialtest;
proc freq data = have;
    tables variablename/binomial;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In general, any SAS procedure output can be captured and placed into a SAS data set by using the proper ODS OUTPUT statement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 15:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/507789#M1513</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-10-26T15:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the outcome results from a proc freq?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/508323#M1645</link>
      <description>&lt;P&gt;Hi yes this seems to work. However the main point of the confidence limit are not in the output tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;would like to obtain this information :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Confidence Limits for the Binomial ProportionProportion = 0.0933&lt;BR /&gt;Type95%&amp;nbsp;Confidence&amp;nbsp;Limits&lt;BR /&gt;Clopper-Pearson (Exact) 0.0520 0.1516&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the&amp;nbsp;correct statement to call the confidence interval&amp;nbsp;in the "ods output" ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the tip!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Oct 2018 13:08:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/508323#M1645</guid>
      <dc:creator>juliafervi</dc:creator>
      <dc:date>2018-10-29T13:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to save the outcome results from a proc freq?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/508337#M1649</link>
      <description>found "BinomialCLs" perfect for what I was looking for.&lt;BR /&gt;&lt;BR /&gt;Thank you very much Paige Miller!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Oct 2018 13:42:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-save-the-outcome-results-from-a-proc-freq/m-p/508337#M1649</guid>
      <dc:creator>juliafervi</dc:creator>
      <dc:date>2018-10-29T13:42:07Z</dc:date>
    </item>
  </channel>
</rss>

