<?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 Interpreting Proc Survey Logistic Output in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670859#M32057</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm trying to run an analysis looking at health literacy (1 = low health literacy...4 = high health literacy) predicting self-management of diabetes (0 = low self-management...6 = high self-management). I'm using the following code and just want to make sure everything is in order, since I am getting an OR of 0.743 (showing that individuals with high health literacy are less likely to adequately self-manage, which is the opposite of what I would expect). Any feedback or tips would be appreciated. Code is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SURVEYLOGISTIC DATA=test;&lt;BR /&gt;WEIGHT _LLCPWT;&lt;BR /&gt;CLUSTER _PSU;&lt;BR /&gt;STRATA _STRWT;&lt;BR /&gt;MODEL MANAGE (event='6')= healthliteracy;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jul 2020 02:11:17 GMT</pubDate>
    <dc:creator>amng</dc:creator>
    <dc:date>2020-07-21T02:11:17Z</dc:date>
    <item>
      <title>Interpreting Proc Survey Logistic Output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670859#M32057</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm trying to run an analysis looking at health literacy (1 = low health literacy...4 = high health literacy) predicting self-management of diabetes (0 = low self-management...6 = high self-management). I'm using the following code and just want to make sure everything is in order, since I am getting an OR of 0.743 (showing that individuals with high health literacy are less likely to adequately self-manage, which is the opposite of what I would expect). Any feedback or tips would be appreciated. Code is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SURVEYLOGISTIC DATA=test;&lt;BR /&gt;WEIGHT _LLCPWT;&lt;BR /&gt;CLUSTER _PSU;&lt;BR /&gt;STRATA _STRWT;&lt;BR /&gt;MODEL MANAGE (event='6')= healthliteracy;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 02:11:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670859#M32057</guid>
      <dc:creator>amng</dc:creator>
      <dc:date>2020-07-21T02:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting Proc Survey Logistic Output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670949#M32061</link>
      <description>&lt;P&gt;I think by using the 'event=' option you have compressed your response variable in to a binomial.&amp;nbsp; If you want to treat this as a cumulative logistic, I think you should change your model statement to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MODEL MANAGE = healthliteracy;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will need a CLASS statement that includes healthliteracy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to treat this a generalized logit, so that all ORs are compared to a reference level, this would change to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MODEL manage(reference='6') = healthliteracy/link = glogit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You still must have the CLASS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps some.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 12:17:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670949#M32061</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-21T12:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting Proc Survey Logistic Output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670950#M32062</link>
      <description>&lt;P&gt;According to the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_logistic_syntax22.htm&amp;amp;locale=en" target="_self"&gt;documentation&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;The EVENT= option has no effect when there are more than two response categories.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But I agree that &lt;FONT face="courier new,courier"&gt;reference='6'&lt;/FONT&gt; is needed.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 12:36:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670950#M32062</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-21T12:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting Proc Survey Logistic Output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670997#M32064</link>
      <description>&lt;P&gt;Always check the log. With your code, there will be a message that EVENT= is ignored since this is not a binary variable (as stated in a previous response). There is also a message in the log (and in the results) indicating that you are modeling cumulative logits, meaning that you are treating the response as ordinal, which is probably what you want rather than an generalized logit (LINK=GLOGIT) model which ignores the response level ordering. But as also indicated in that log note (and in the results), you are modeling the probabilities of LOWER ordered levels of the response. The Response Profile table shows that the lower Ordered Values are associated with lower values of your actual response. So, the interpretation of that odds ratio is actually that increasing the predictor decreases the odds of a low response (low management), meaning that it increases the odds of a high response (high management).&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 14:10:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/670997#M32064</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-07-21T14:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting Proc Survey Logistic Output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/671000#M32065</link>
      <description>&lt;P&gt;The results will be more intuitive if you specify the DESCENDING response option (rather than EVENT= or REFERENCE=).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;model manage (desc) =&amp;nbsp;&lt;SPAN&gt;healthliteracy;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also, see &lt;A href="http://support.sas.com/kb/24315" target="_self"&gt;this note&lt;/A&gt; on interpreting odds ratios in ordinal models.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 14:17:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-Proc-Survey-Logistic-Output/m-p/671000#M32065</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-07-21T14:17:34Z</dc:date>
    </item>
  </channel>
</rss>

