<?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: ODS Output - CLODDS - not working with categorical exposure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803714#M39519</link>
    <description>&lt;P&gt;See "ODS Table Names" in the Details section of the procedure documentation whenever you have a problem like this. Since the RL option is the same as CLODDS=WALD, that table in the PROC LOGISTIC documentation indicates that the appropriate table name is&amp;nbsp;&lt;SPAN&gt;CLOddsWald.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Mar 2022 22:19:31 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2022-03-23T22:19:31Z</dc:date>
    <item>
      <title>ODS Output - CLODDS - not working with categorical exposure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803504#M39514</link>
      <description>&lt;P&gt;I am trying to limit my output from my proc logistics to just my exposure of interest. My exposure, c_par_ln_q2, is a two category variable. When I use ods output to output the cloddswald, it outputs like this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bchronister_0-1648010996676.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69716i0C779868242475DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bchronister_0-1648010996676.png" alt="bchronister_0-1648010996676.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I add the where statement as follows, i get a clodds1 dataset with no observations. I am not sure how to fix this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc logistic data=logalla desc;
by c_gender;
class c_par_ln_q2 (ref="0");
model c_testosterone_ln_q3 (ref="1")=c_par_ln_q2 c_gender /rl link=glogit;
ods output parameterestimates=pe1 (keep=variable response ProbChiSq c_gender where=(variable= "c_par_ln_q2")) CLOddsWald=clodds1 (where=(effect= "c_par_ln_q2 1 vs 0"));
run;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 04:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803504#M39514</guid>
      <dc:creator>bchronister</dc:creator>
      <dc:date>2022-03-23T04:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Output - CLODDS - not working with categorical exposure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803714#M39519</link>
      <description>&lt;P&gt;See "ODS Table Names" in the Details section of the procedure documentation whenever you have a problem like this. Since the RL option is the same as CLODDS=WALD, that table in the PROC LOGISTIC documentation indicates that the appropriate table name is&amp;nbsp;&lt;SPAN&gt;CLOddsWald.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 22:19:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803714#M39519</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-03-23T22:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Output - CLODDS - not working with categorical exposure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803716#M39521</link>
      <description>&lt;P&gt;For the code that I provided, I did use the ClOddsWald table name. I was also able to subset it to other variables, but just couldn't specifically for the c_par_ln_q2 variable. Is there a part of the code that I needed to change, or am not seeing?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 22:26:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803716#M39521</guid>
      <dc:creator>bchronister</dc:creator>
      <dc:date>2022-03-23T22:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Output - CLODDS - not working with categorical exposure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803787#M39525</link>
      <description>&lt;P&gt;I suspect there are TWO blanks after the variable name. Try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;where=(effect= "c_par_ln_q2  1 vs 0")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Unfortunately, &lt;A href="https://blogs.sas.com/content/iml/2021/06/21/sas-output-multiple-blanks.html" target="_self"&gt;HTML compresses blanks&lt;/A&gt;,&amp;nbsp; &amp;nbsp;so when you cut and paste in the HTML destination, the number of blanks in the HTML might not match the number of blanks in the data string.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 13:12:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-Output-CLODDS-not-working-with-categorical-exposure/m-p/803787#M39525</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-03-24T13:12:57Z</dc:date>
    </item>
  </channel>
</rss>

