<?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: Proc GENMOD  for three ordinal variables using log linear model in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/285078#M15054</link>
    <description>&lt;PRE&gt;
Sorry. I am not expert about PROC CATMOD. But you can read documentation, there are many example in it you can refer to.

"how i know the best model, how to read the output.. "
Check ANOVA, if some variables are not significant ,you can drop them from the model.
Can you post the output? I don't know if I could explain it .

&lt;/PRE&gt;</description>
    <pubDate>Sun, 17 Jul 2016 01:23:01 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-07-17T01:23:01Z</dc:date>
    <item>
      <title>Proc GENMOD  for three ordinal variables using log linear model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284246#M15002</link>
      <description>&lt;P&gt;hallo, can you help me guys?&lt;/P&gt;&lt;P&gt;i am trying to analyze three ordinal variables using log linear model.. but i cant find the genmod procedure for three ordinal variables.. i've been try using the genmod proc for two ordinal variables and changed the model, but the there was missing value..&lt;/P&gt;&lt;P&gt;below is my procedure:&lt;/P&gt;&lt;P&gt;data tugasadk;&lt;BR /&gt;input x$&amp;nbsp;y$ z$ u v w count &amp;nbsp;@@;&lt;BR /&gt;datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc genmod data=tugasadk rorder=data;&lt;BR /&gt;class x y z;&lt;BR /&gt;model count = x y z/ dist=poi&lt;BR /&gt;link=log lrci type3 obstats;&lt;BR /&gt;title 'independen model 1 ';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc genmod data=tugasadk order=data;&lt;BR /&gt;class x y z ;&lt;BR /&gt;model count = x y z u*v x*z y*z /dist=poi&lt;BR /&gt;link=log lrci type3 obstats;&lt;BR /&gt;title 'linear by linear association 1';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;can you show me the right procedure? thank you..&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 05:24:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284246#M15002</guid>
      <dc:creator>dyah</dc:creator>
      <dc:date>2016-07-14T05:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GENMOD  for three ordinal variables using log linear model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284253#M15003</link>
      <description>&lt;P&gt;You are building Possion Regression, Not Log Linear Model.&lt;/P&gt;
&lt;P&gt;Log Linear Model is for&amp;nbsp;Contingency/Freq Table . In other words, you need use PROC CATMOD .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc catmod data=bartlett;
weight count;
model x*y*z*u*v*w=_response_ / noparm pred=freq;
loglin x|y|z|u|v|w @ 2;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 07:35:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284253#M15003</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-14T07:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GENMOD  for three ordinal variables using log linear model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284821#M15026</link>
      <description>&lt;P&gt;thank you very much for the reply, but from three ordinal variables i've made the contingency table..&lt;/P&gt;&lt;P&gt;is that still use poisson regression?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 13:33:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284821#M15026</guid>
      <dc:creator>dyah</dc:creator>
      <dc:date>2016-07-15T13:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GENMOD  for three ordinal variables using log linear model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284990#M15045</link>
      <description>No. It totally different another Model. It split the COUNT into three variables way .</description>
      <pubDate>Sat, 16 Jul 2016 03:35:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/284990#M15045</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-16T03:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GENMOD  for three ordinal variables using log linear model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/285014#M15046</link>
      <description>&lt;P&gt;I've tried the procedure from you, but the next problem is still confuse how i know the best model, how to read the output.. can you help me once again?&lt;/P&gt;&lt;P&gt;thanks you very much for your helping..&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jul 2016 09:53:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/285014#M15046</guid>
      <dc:creator>dyah</dc:creator>
      <dc:date>2016-07-16T09:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GENMOD  for three ordinal variables using log linear model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/285078#M15054</link>
      <description>&lt;PRE&gt;
Sorry. I am not expert about PROC CATMOD. But you can read documentation, there are many example in it you can refer to.

"how i know the best model, how to read the output.. "
Check ANOVA, if some variables are not significant ,you can drop them from the model.
Can you post the output? I don't know if I could explain it .

&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jul 2016 01:23:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GENMOD-for-three-ordinal-variables-using-log-linear-model/m-p/285078#M15054</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-17T01:23:01Z</dc:date>
    </item>
  </channel>
</rss>

