<?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: Proportional odd assumption in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877801#M43410</link>
    <description>&lt;P&gt;You can get all of those tests without entering multiple TEST statements. Just include both the EQUALSLOPES and the UNEQUALSLOPES options as illustrated in &lt;A href="https://support.sas.com/kb/22/954.html" target="_self"&gt;this note&lt;/A&gt; about the partial proportional odds model. See the "Fitting the fully nonproportional odds model" section. The tests of the U_&amp;nbsp; effects are the same as what the multiple TEST statements give you. For the documentation example you refer to, these statements give all of the tests.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=docvisit;
   model dvisits= sex age agesq income levyplus freepoor
         freerepa illness actdays hscore chcond1 chcond2 
         / equalslopes unequalslopes;
   run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 26 May 2023 22:29:04 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2023-05-26T22:29:04Z</dc:date>
    <item>
      <title>Proportional odd assumption</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877777#M43408</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wanted to use the&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/statug_logistic_syntax35.htm" target="_blank" rel="noopener"&gt;TEST&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;statements to test the proportional odds assumption for each of the covariates in my model. I found a similar code and example here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_logistic_examples22.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_logistic_examples22.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tired the code on my data but getting multiple errors. Can anyone please explain what am doing wrong.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc logistic data=cleanedpracticum;
class functional person_type Gender hr season
dayofweek drug bac_cat agegrp drg_alc / param=ref order=data ;
model issgrp=functional person_type Gender hr season dayofweek
drug bac_cat agegrp drg_alc / unequalslopes MAXITER=10000;

functional: test functional_0 =functional_1;
person_type: test person_type_0 =person_type_1;
bac_cat: test bac_cat_0 =bac_cat_1;
Gender: test Gender_0 =Gender_1;
hr: test hr_0 =hr_1;
season: test season_0 =season_1;
dayofweek: test dayofweek_0 =dayofweek_1;
agegrp: test agegrp_0 =agegrp_1;
drug: test drug_0 =drug_1;
drg_alc: test drg_alc_0 =drg_alc_1;
agegrp: test agegrp_0 =agegrp_1;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;DIV class=""&gt;ERROR: FUNCTIONAL_0 in Test Statement functional is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: FUNCTIONAL_1 in Test Statement functional is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: PERSON_TYPE_0 in Test Statement person_type is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: PERSON_TYPE_1 in Test Statement person_type is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: BAC_CAT_0 in Test Statement bac_cat is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: BAC_CAT_1 in Test Statement bac_cat is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: GENDER_0 in Test Statement Gender is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: GENDER_1 in Test Statement Gender is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: HR_0 in Test Statement hr is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: HR_1 in Test Statement hr is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: SEASON_0 in Test Statement season is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: SEASON_1 in Test Statement season is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: DAYOFWEEK_0 in Test Statement dayofweek is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: DAYOFWEEK_1 in Test Statement dayofweek is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: AGEGRP_0 in Test Statement agegrp is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: AGEGRP_1 in Test Statement agegrp is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: DRUG_0 in Test Statement drug is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: DRUG_1 in Test Statement drug is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: DRG_ALC_0 in Test Statement drg_alc is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: DRG_ALC_1 in Test Statement drg_alc is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: AGEGRP_0 in Test Statement agegrp is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: AGEGRP_1 in Test Statement agegrp is not a parameter in the model.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 May 2023 20:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877777#M43408</guid>
      <dc:creator>CathyVI</dc:creator>
      <dc:date>2023-05-26T20:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proportional odd assumption</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877788#M43409</link>
      <description>&lt;P&gt;If your variable is named Functional and the values of the class variable are 1, 2 and 3 then the Test statement wants to see Fuctional1 Functional2 and Functional3 not Functional_1 Functional_2 Functional_3.&lt;/P&gt;
&lt;P&gt;From the documentation:&lt;/P&gt;
&lt;DIV class="xis-refProc"&gt;
&lt;DIV id="statug.logistic.logisticinputoutput" class="AAsection"&gt;
&lt;DIV id="statug.logistic.logisticods" class="AAsection"&gt;
&lt;DIV id="statug.logistic.logisticpnods" class="AAsection"&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;For CLASS variables, the parameter names are obtained by concatenating the corresponding CLASS variable name with the CLASS category;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;The _ would only apply if the VALUE of the class (or formatted valued) includes the _.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 20:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877788#M43409</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-26T20:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proportional odd assumption</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877801#M43410</link>
      <description>&lt;P&gt;You can get all of those tests without entering multiple TEST statements. Just include both the EQUALSLOPES and the UNEQUALSLOPES options as illustrated in &lt;A href="https://support.sas.com/kb/22/954.html" target="_self"&gt;this note&lt;/A&gt; about the partial proportional odds model. See the "Fitting the fully nonproportional odds model" section. The tests of the U_&amp;nbsp; effects are the same as what the multiple TEST statements give you. For the documentation example you refer to, these statements give all of the tests.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=docvisit;
   model dvisits= sex age agesq income levyplus freepoor
         freerepa illness actdays hscore chcond1 chcond2 
         / equalslopes unequalslopes;
   run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 May 2023 22:29:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/877801#M43410</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2023-05-26T22:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proportional odd assumption</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/878693#M43448</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;Thank you!&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you provide me resources on how to interpret and report my results for the partial proportional odds assumptions. I am struggling to interpret and report my results.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 15:30:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/878693#M43448</guid>
      <dc:creator>CathyVI</dc:creator>
      <dc:date>2023-06-01T15:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proportional odd assumption</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/878709#M43450</link>
      <description>The section of the note that I referred to shows an example of obtaining and interpreting the results.</description>
      <pubDate>Thu, 01 Jun 2023 16:08:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proportional-odd-assumption/m-p/878709#M43450</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2023-06-01T16:08:57Z</dc:date>
    </item>
  </channel>
</rss>

