<?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 adjust for age in given example? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146209#M7674</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your approach is correct.&amp;nbsp; After creating the age groups, use PROC FREQ in a manner similar to the given example, replacing Gender with whatever variable name you use to create the age groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may wish to examine if your age data divides itself naturally, rather than forcing 10 year strata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Dec 2014 19:45:04 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2014-12-11T19:45:04Z</dc:date>
    <item>
      <title>How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146208#M7673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Dear all,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I am currently having some problems with a minor issue. If anyone could please help me I would be very grateful. I hope I have explained my self in an understandable way, otherwise please let me know. &lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have calculated Odds ratios using the proc freq procedure for chisq measures. These however are the crude numbers and I need to adjust for age. And I am not sure which statistical measure will be the best suited to do so.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I am doing a cross sectional study using register based materials. I am comparing to groups and these groups differ significantly age wise.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have found the following code in SAS examples, were they use Cochran-Mantel-Haenszel statistics to adjust for gender:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(copy/paste from &lt;A href="http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_freq_sect031.htm" title="http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_freq_sect031.htm"&gt;Base SAS(R) 9.2 Procedures Guide: Statistical Procedures, Third Edition&lt;/A&gt; )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Migraine;&lt;/P&gt;&lt;P&gt;Input Gender $ Treatment $ Response $ Count @@;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;female Active&amp;nbsp; Better 16&amp;nbsp;&amp;nbsp; female Active&amp;nbsp; Same 11&lt;/P&gt;&lt;P&gt;female Placebo Better 5&amp;nbsp;&amp;nbsp; female Placebo Same 20&lt;/P&gt;&lt;P&gt;male Active&amp;nbsp; Better 12&amp;nbsp;&amp;nbsp; male&amp;nbsp;&amp;nbsp; Active&amp;nbsp; Same 16&lt;/P&gt;&lt;P&gt;male&amp;nbsp;&amp;nbsp; Placebo Better&amp;nbsp; 7&amp;nbsp;&amp;nbsp; male&amp;nbsp;&amp;nbsp; Placebo Same 19&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following PROC FREQ statements create a multiway table stratified by &lt;SPAN class="variable"&gt;Gender&lt;/SPAN&gt;, where &lt;SPAN class="variable"&gt;Treatment&lt;/SPAN&gt; forms the rows and &lt;SPAN class="variable"&gt;Response&lt;/SPAN&gt; forms the columns. The CMH option produces the Cochran-Mantel-Haenszel statistics. For this stratified table, estimates of the common relative risk and the Breslow-Day test for homogeneity of the odds ratios are also displayed. The NOPRINT option suppresses the display of the contingency tables. These statements produce &lt;A href="http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/procstat_freq_sect031.htm#procstat.freq.frqx6a"&gt;Output 3.7.1&lt;/A&gt; through &lt;A href="http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/procstat_freq_sect031.htm#procstat.freq.frqx6c"&gt;Output 3.7.3&lt;/A&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc freq data=Migraine;&lt;/P&gt;&lt;P&gt;tables Gender*Treatment*Response / cmh; &lt;/P&gt;&lt;P&gt;weight Count;&lt;/P&gt;&lt;P&gt;title 'Clinical Trial for Treatment of Migraine Headaches';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My question is how to adjust for age and not gender using the Cochran-Mantel-Haenszel statistics. Do I need to split up the data into age groups 25-35 years, 35-45 years, 45-55 years and so on? My data set is currently not divided into groups but range for 16 years to 100 years +&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 11:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146208#M7673</guid>
      <dc:creator>MatSof</dc:creator>
      <dc:date>2014-12-11T11:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146209#M7674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your approach is correct.&amp;nbsp; After creating the age groups, use PROC FREQ in a manner similar to the given example, replacing Gender with whatever variable name you use to create the age groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may wish to examine if your age data divides itself naturally, rather than forcing 10 year strata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 19:45:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146209#M7674</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-12-11T19:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146210#M7675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put AGE at the first position. as Steve pointed .&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px; background-color: #ffffff;"&gt;tables AGE*Treatment*Response / cmh;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Dec 2014 06:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146210#M7675</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-12-14T06:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146211#M7676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Steve - that was very help full.&amp;nbsp; I have had success implementing the code:)&lt;/P&gt;&lt;P&gt;I just have a quick question to the results. I get the following output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt;Summary Statistics for druk by AMI&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt;&amp;nbsp; Controlling for aldvintr&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Cochran-Mantel-Haenszel Statistics (Based on Table Scores)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Statistic Alternative Hypothesis&amp;nbsp;&amp;nbsp;&amp;nbsp; DF Value&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Prob&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; 1 Nonzero Correlation&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 14.2628&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.0002&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; 2 Row Mean Scores Differ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 14.2628 0.0002&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; 3 General Association&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 14.2628&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: yellow;"&gt;0.0002&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Estimates of the Common Relative Risk (Row1/Row2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Type of Study&amp;nbsp;&amp;nbsp; Method&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 95% Confidence Limits&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Case-Control Mantel-Haenszel&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: yellow;"&gt;0.5349&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: yellow;"&gt;0.3856&lt;/SPAN&gt; &lt;SPAN style="background: yellow;"&gt;0.7419&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; (Odds Ratio)&amp;nbsp;&amp;nbsp;&amp;nbsp; Logit **&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.7646&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.5653 1.0340&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Cohort Mantel-Haenszel&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.9331&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.9063 0.9608&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; (Col1 Risk) Logit&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.9176&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.9030 0.9324&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Cohort Mantel-Haenszel&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.7213&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.2843 2.3070&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; (Col2 Risk)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Logit **&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.1898&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.9218 1.5358&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; ** These logit estimators use a correction of 0.5 in every cell&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; of those tables that contain a zero. Tables with a zero&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; row or a zero column are not included in computing the&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; logit estimators.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Breslow-Day Test for&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Homogeneity of the Odds Ratios&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Chi-Square 36.3092&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; DF 52&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Pr &amp;gt; ChiSq 0.9516&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt; Total Sample Size = 4509&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 8.0pt; font-family: 'SAS Monospace';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 14.0pt; font-family: 'Cambria','serif';"&gt;My question is to the interpretation of the above. Are the yellow high-lighted numbers the result I am looking for? So that the adjusted OR in the above given example equals &lt;SPAN style="text-decoration: underline;"&gt;OR: &lt;SPAN style="background: yellow;"&gt;0.5349; 95%CI:&lt;/SPAN&gt;&lt;SPAN style="background: yellow;"&gt; 0.3856; 0.7419, p value =0.002&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2014 15:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146211#M7676</guid>
      <dc:creator>MatSof</dc:creator>
      <dc:date>2014-12-16T15:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146212#M7677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also a great thanks to you Xia&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2014 15:05:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146212#M7677</guid>
      <dc:creator>MatSof</dc:creator>
      <dc:date>2014-12-16T15:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146213#M7678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes--the age adjusted OR is 0.5349 with a 95% confidence interval of (0.3856, 0.7419).&amp;nbsp; The p value is for the null hypothesis of OR=1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2014 15:15:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146213#M7678</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-12-16T15:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust for age in given example?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146214#M7679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Allright that sounds great. Once again thank you very much for your help Steve - it has been highly appreciated from a statistical newbie;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 11:52:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-adjust-for-age-in-given-example/m-p/146214#M7679</guid>
      <dc:creator>MatSof</dc:creator>
      <dc:date>2014-12-17T11:52:50Z</dc:date>
    </item>
  </channel>
</rss>

