<?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 How to assess for EMM if Breslow day test doesn't work? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-assess-for-EMM-if-Breslow-day-test-doesn-t-work/m-p/810978#M39942</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to assess for EMM between my exposure and outcome variables across strata of a 3rd variable.&amp;nbsp; The exposure variable, color, has 3 categories within it (red, blue, green), and the outcome variable relatedness is ordinal and has 3 levels within it (low, medium, high).&amp;nbsp; I am looking to see if there is EMM across the 3rd variable location which is binary (0, 1).&amp;nbsp; When I run the following code, it outputs the Cochran-Mantel-Haenszel statistics, but no Breslow day test output.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc freq data = my_data;
	table location*color*relatedness /cmh bdt;
run;&lt;/PRE&gt;&lt;P&gt;Does the Breslow day test not work in this case because I have categorical and ordinal exposure and outcome? Or is there something wrong with my code?&lt;/P&gt;&lt;P&gt;If the Breslow day test does not apply in this case, how would I statistically test for effect measure modification?&amp;nbsp; Thanks for any guidance anyone can provide.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 01 May 2022 22:43:16 GMT</pubDate>
    <dc:creator>SAS49</dc:creator>
    <dc:date>2022-05-01T22:43:16Z</dc:date>
    <item>
      <title>How to assess for EMM if Breslow day test doesn't work?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-assess-for-EMM-if-Breslow-day-test-doesn-t-work/m-p/810978#M39942</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to assess for EMM between my exposure and outcome variables across strata of a 3rd variable.&amp;nbsp; The exposure variable, color, has 3 categories within it (red, blue, green), and the outcome variable relatedness is ordinal and has 3 levels within it (low, medium, high).&amp;nbsp; I am looking to see if there is EMM across the 3rd variable location which is binary (0, 1).&amp;nbsp; When I run the following code, it outputs the Cochran-Mantel-Haenszel statistics, but no Breslow day test output.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc freq data = my_data;
	table location*color*relatedness /cmh bdt;
run;&lt;/PRE&gt;&lt;P&gt;Does the Breslow day test not work in this case because I have categorical and ordinal exposure and outcome? Or is there something wrong with my code?&lt;/P&gt;&lt;P&gt;If the Breslow day test does not apply in this case, how would I statistically test for effect measure modification?&amp;nbsp; Thanks for any guidance anyone can provide.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2022 22:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-assess-for-EMM-if-Breslow-day-test-doesn-t-work/m-p/810978#M39942</guid>
      <dc:creator>SAS49</dc:creator>
      <dc:date>2022-05-01T22:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to assess for EMM if Breslow day test doesn't work?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-assess-for-EMM-if-Breslow-day-test-doesn-t-work/m-p/811051#M39953</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;DIV class="xisDoc-refProc"&gt;
&lt;DIV id="statug.freq.freqtables" class="aa-section"&gt;
&lt;DIV id="statug_freq002752" class="aa-section"&gt;
&lt;DIV class="aa-options"&gt;
&lt;DL class="aa-options"&gt;
&lt;DD&gt;
&lt;DIV class="aa-options"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BDT is a&amp;nbsp;CMH option.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;( To request Tarone’s adjustment for the Breslow-Day test, specify the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;BDT&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=" aa-argument"&gt;cmh-option&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to ask for it like this : CMH(BDT)&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data = my_data;
	table location*color*relatedness / 
  relrisk plots(only)=relriskplot(stats) cmh(bdt);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Koen&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DD&gt;
&lt;/DL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 02 May 2022 12:34:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-assess-for-EMM-if-Breslow-day-test-doesn-t-work/m-p/811051#M39953</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-05-02T12:34:50Z</dc:date>
    </item>
  </channel>
</rss>

