<?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 Test for Trend when Frequencies already known in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Test-for-Trend-when-Frequencies-already-known/m-p/760929#M37104</link>
    <description>&lt;P&gt;Is there a way to calculate the p-values from Cochran-Armitage Trend Test when I am only given frequencies like so:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
 input dose $ response $ count;
 cards;
 10ug  yes 3
 20ug  yes 1
 30ug  yes 1
 Plac  yes 2
 10ug  no  1
 20ug  no  3
 30ug  no  4
 Plac  no  1
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or do I need the combinations repeating for&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data = have;
 tables dose*response / trend;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 11 Aug 2021 14:51:51 GMT</pubDate>
    <dc:creator>mariko5797</dc:creator>
    <dc:date>2021-08-11T14:51:51Z</dc:date>
    <item>
      <title>Test for Trend when Frequencies already known</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Test-for-Trend-when-Frequencies-already-known/m-p/760929#M37104</link>
      <description>&lt;P&gt;Is there a way to calculate the p-values from Cochran-Armitage Trend Test when I am only given frequencies like so:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
 input dose $ response $ count;
 cards;
 10ug  yes 3
 20ug  yes 1
 30ug  yes 1
 Plac  yes 2
 10ug  no  1
 20ug  no  3
 30ug  no  4
 Plac  no  1
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or do I need the combinations repeating for&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data = have;
 tables dose*response / trend;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Aug 2021 14:51:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Test-for-Trend-when-Frequencies-already-known/m-p/760929#M37104</guid>
      <dc:creator>mariko5797</dc:creator>
      <dc:date>2021-08-11T14:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Test for Trend when Frequencies already known</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Test-for-Trend-when-Frequencies-already-known/m-p/760930#M37105</link>
      <description>&lt;P&gt;You can use the WEIGHT statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data = have;&lt;/P&gt;
&lt;P&gt;weight count;&lt;BR /&gt;tables dose*response / trend;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 14:54:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Test-for-Trend-when-Frequencies-already-known/m-p/760930#M37105</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2021-08-11T14:54:38Z</dc:date>
    </item>
  </channel>
</rss>

