<?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: Weighted effect coding in regressions in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319658#M16904</link>
    <description>&lt;P&gt;A different coding system will not "make the sample fit the population." You really ought to look into SURVEYLOGISTIC, it might be just the right tool for your problem, and it is able to make the weighted predictions that you appear to be interested in.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Dec 2016 21:03:37 GMT</pubDate>
    <dc:creator>sld</dc:creator>
    <dc:date>2016-12-16T21:03:37Z</dc:date>
    <item>
      <title>Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318502#M16813</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I would like to perform multinomial logit regressions with effect coding (-1 0 1), but groups sizes are unequal. Because of this, intercepts correspond to the mean of means rather than the real grand mean. I wonder if there is a possibility with SAS to get adjusted intercepts in order to take into account the unbalanced data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 09:43:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318502#M16813</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-13T09:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318508#M16814</link>
      <description>&lt;P&gt;Are you fitting generalize logit regression or cumulative logit regression?&lt;/P&gt;&lt;P&gt;&lt;BR data-mce-bogus="1" /&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
 set sashelp.class end=last;
output;
if last then do;
 sex='N';weight=34.5;height=123.4;output;
  sex='N';weight=134.5;height=23.4;output;
 sex='N';weight=74.5;height=223.4;output;
 sex='N';weight=44.5;height=93.4;output;
end;
run;


proc logistic data=class;
model sex=weight height/link=glogit equalslopes;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR data-mce-bogus="1" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 10:15:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318508#M16814</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-13T10:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318509#M16815</link>
      <description>&lt;P&gt;Generalize logit regressions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is equalslopes stand for?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 10:19:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318509#M16815</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-13T10:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318511#M16816</link>
      <description>&lt;P&gt;My model looks like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc logistic;&lt;BR /&gt;class sex eduM3(ref='2')/param=effect ;&lt;BR /&gt;model edu3(ref='2')= sex eduM3 /link=glogit rsquare;&lt;BR /&gt;weight pond / norm;&lt;BR /&gt;where model=1;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;edu3 has 3 categories.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 10:22:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318511#M16816</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-13T10:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318512#M16817</link>
      <description>&lt;P&gt;Are you fitting generalize logit regression or cumulative logit regression?&lt;/P&gt;&lt;P&gt;&lt;BR data-mce-bogus="1" /&gt;&lt;/P&gt;&lt;P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
 set sashelp.class end=last;
output;
if last then do;
 sex='N';weight=34.5;height=123.4;output;
  sex='N';weight=134.5;height=23.4;output;
 sex='N';weight=74.5;height=223.4;output;
 sex='N';weight=44.5;height=93.4;output;
end;
run;


proc logistic data=class;
model sex=weight height/link=glogit equalslopes;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR data-mce-bogus="1" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 10:22:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318512#M16817</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-13T10:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318514#M16818</link>
      <description>&lt;P&gt;It means these logit model have the same intercept term.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 10:32:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318514#M16818</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-13T10:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318518#M16819</link>
      <description>&lt;P&gt;I don't understand what you mean. The output of the model is this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Logistic: Parameter Estimates" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="8" scope="colgroup"&gt;Analysis of Maximum Likelihood Estimates&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l b header" scope="col"&gt;Parameter&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;edu3&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;DF&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Estimate&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Standard&lt;BR /&gt;Error&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Wald&lt;BR /&gt;Chi-Square&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Pr&amp;nbsp;&amp;gt;&amp;nbsp;ChiSq&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Intercept&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-1.3085&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0191&lt;/TD&gt;
&lt;TD class="r data"&gt;4707.0531&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Intercept&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-0.0263&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0104&lt;/TD&gt;
&lt;TD class="r data"&gt;6.3999&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0114&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;sex&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0978&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0112&lt;/TD&gt;
&lt;TD class="r data"&gt;76.6518&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;sex&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.1640&lt;/TD&gt;
&lt;TD class="r data"&gt;0.00906&lt;/TD&gt;
&lt;TD class="r data"&gt;327.2032&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;eduM3&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;1.6999&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0205&lt;/TD&gt;
&lt;TD class="r data"&gt;6854.5466&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;eduM3&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.6441&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0127&lt;/TD&gt;
&lt;TD class="r data"&gt;2559.4038&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;eduM3&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-0.4362&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0256&lt;/TD&gt;
&lt;TD class="r data"&gt;290.2973&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;eduM3&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.3134&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0136&lt;/TD&gt;
&lt;TD class="r data"&gt;533.6794&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With those parameters, I should be able to replicate the distribution of independent variables, but I can't (and I think it is because intercepts are biaised due to the unequal size of groups).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="320"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="5" width="320"&gt;Table&amp;nbsp;of&amp;nbsp;sex&amp;nbsp;by&amp;nbsp;edu3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD rowspan="2" width="64"&gt;sex&lt;/TD&gt;
&lt;TD colspan="4" width="256"&gt;edu3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;0&lt;/TD&gt;
&lt;TD width="64"&gt;1&lt;/TD&gt;
&lt;TD width="64"&gt;2&lt;/TD&gt;
&lt;TD width="64"&gt;Total&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;0&lt;/TD&gt;
&lt;TD width="64"&gt;22.53&lt;/TD&gt;
&lt;TD width="64"&gt;46.45&lt;/TD&gt;
&lt;TD width="64"&gt;31.03&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;1&lt;/TD&gt;
&lt;TD width="64"&gt;22.86&lt;/TD&gt;
&lt;TD width="64"&gt;40.35&lt;/TD&gt;
&lt;TD width="64"&gt;36.79&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;Total&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD colspan="5" width="320"&gt;Table&amp;nbsp;of&amp;nbsp;eduM3&amp;nbsp;by&amp;nbsp;edu3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD rowspan="2" width="64"&gt;eduM3&lt;/TD&gt;
&lt;TD colspan="4" width="256"&gt;edu3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;0&lt;/TD&gt;
&lt;TD width="64"&gt;1&lt;/TD&gt;
&lt;TD width="64"&gt;2&lt;/TD&gt;
&lt;TD width="64"&gt;Total&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;0&lt;/TD&gt;
&lt;TD width="64"&gt;34.07&lt;/TD&gt;
&lt;TD width="64"&gt;42.57&lt;/TD&gt;
&lt;TD width="64"&gt;23.36&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;1&lt;/TD&gt;
&lt;TD width="64"&gt;6.94&lt;/TD&gt;
&lt;TD width="64"&gt;52.9&lt;/TD&gt;
&lt;TD width="64"&gt;40.16&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;2&lt;/TD&gt;
&lt;TD width="64"&gt;5.23&lt;/TD&gt;
&lt;TD width="64"&gt;25.6&lt;/TD&gt;
&lt;TD width="64"&gt;69.17&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;Total&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 13 Dec 2016 10:47:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318518#M16819</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-13T10:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318533#M16820</link>
      <description>&lt;P&gt;That is odd. Two intercept should have the same estimate if you use equalslope.&lt;/P&gt;
&lt;P&gt;Can you post the LOG ?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 12:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318533#M16820</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-13T12:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318534#M16821</link>
      <description>&lt;P&gt;The previous outpus was without the equalslopes statement. With equalslopes, I now have this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure Logistic: Parameter Estimates" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="c b header" colspan="8" scope="colgroup"&gt;Analysis of Maximum Likelihood Estimates&lt;/TH&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l b header" scope="col"&gt;Parameter&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;edu3&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;DF&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Estimate&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Standard&lt;BR /&gt;Error&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Wald&lt;BR /&gt;Chi-Square&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;Pr&amp;nbsp;&amp;gt;&amp;nbsp;ChiSq&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Intercept&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-0.7922&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0106&lt;/TD&gt;
&lt;TD class="r data"&gt;5571.4516&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;Intercept&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;-0.1503&lt;/TD&gt;
&lt;TD class="r data"&gt;0.00945&lt;/TD&gt;
&lt;TD class="r data"&gt;253.0618&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;sex&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.1445&lt;/TD&gt;
&lt;TD class="r data"&gt;0.00762&lt;/TD&gt;
&lt;TD class="r data"&gt;359.9070&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;eduM3&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;0&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.9336&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0107&lt;/TD&gt;
&lt;TD class="r data"&gt;7599.7073&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l rowheader" scope="row"&gt;eduM3&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TH class="l rowheader" scope="row"&gt;&amp;nbsp;&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;0.1369&lt;/TD&gt;
&lt;TD class="r data"&gt;0.0117&lt;/TD&gt;
&lt;TD class="r data"&gt;135.8083&lt;/TD&gt;
&lt;TD class="r data"&gt;&amp;lt;.0001&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm confused, because it seems that some parameters are missing. The dependent variable has 3 categories, so how interpretes a parameter such as the one for sex (0.1445)?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 12:10:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318534#M16821</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-13T12:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318742#M16843</link>
      <description>&lt;PRE&gt;
Because it combine these two logit into one logit .

Interpret parameter estimate just like they are under a single Logit model ,I guess.



&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Dec 2016 02:57:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/318742#M16843</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-14T02:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319159#M16874</link>
      <description>&lt;P&gt;Some thoughts:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) &amp;nbsp;Both of the predictor variables in your MODEL statement are on a categorical scale. That is fine, if appropriate, but consequently there are no "slopes" and hence the discussion about the EQUALSLOPES option is moot. I'll add that if you check the SAS documentation (&lt;EM&gt;always&lt;/EM&gt; a good idea), you'll see that the EQUALSLOPES option affects &lt;EM&gt;slopes&lt;/EM&gt; associated with a &lt;EM&gt;continuous&lt;/EM&gt; predictor, and has no impact on &lt;EM&gt;intercepts&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;2) You have not provided enough information about your study. What is "pond" and how is it related to the study design? What is "model"? In general, if you want a good and appropriate answer to your question, you'll need to provide enough information.&lt;/P&gt;
&lt;P&gt;3) Be sure that you understand how different coding systems work. See &lt;A href="http://www.ats.ucla.edu/stat/r/library/contrast_coding.htm" target="_self"&gt;http://www.ats.ucla.edu/stat/r/library/contrast_coding.htm&lt;/A&gt;&amp;nbsp; &amp;nbsp;The underlying model is the same, regardless of coding system. If you intend to interpret the parameter estimates, then you have to understand the coding system. If you do interpretation based on predicted values, then the coding system is moot because algebraically it all works out to the same thing.&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;</description>
      <pubDate>Thu, 15 Dec 2016 06:03:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319159#M16874</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2016-12-15T06:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319161#M16875</link>
      <description>&lt;P&gt;Check the documentation. EQUALSLOPES does &lt;EM&gt;not&lt;/EM&gt; force intercepts to be equal. The number of intercept parameters is determined by the numbe of levels of the response variable.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 06:07:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319161#M16875</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2016-12-15T06:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319469#M16886</link>
      <description>&lt;P&gt;1) Ok.&lt;/P&gt;
&lt;P&gt;2) I am not really sure what information I should provide. The variable pond is a weight variable to make the sample fit with the population. I need to model the education (3 categories) by a serie a socioeconomic variables (in my example, I try only with 2). The problem is still present without weight and whatever are the independent variables.&lt;/P&gt;
&lt;P&gt;3) It's probably just something I don't understand with the effect coding (-1 0 1). I want to figure out how I can replicate observed distributions with regression parameters. I have no problem doing this with parameters from dummy coding (0 1).&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 08:30:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319469#M16886</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-16T08:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319624#M16898</link>
      <description>&lt;P&gt;Now I have lots more thoughts, but before I share I'd like to know more about your study. Something like a Methods section from a manuscript or report (which you have to write eventually anyway) would be a good start.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And could you clarify what you mean by making "the sample fit the population"? In what way does the sample not represent the population (e.g., do you have stratification or clustering or unequal weighting)?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 19:33:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319624#M16898</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2016-12-16T19:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319629#M16899</link>
      <description>&lt;P&gt;The original weight was unequal and was used to make the sample represents adequately the population by age/sex/country. But as I said, I don't think it matters, because the problem is the same with or without the weight statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is no proper method yet. It's in development.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 19:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319629#M16899</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-16T19:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319632#M16900</link>
      <description>&lt;P&gt;I recommend that you look into the SURVEYLOGISTIC procedure to deal with unequal weights. Search &amp;nbsp; lexjansen.com &amp;nbsp;for useful papers on SURVEYLOGISTIC and read the SURVEYLOGISTIC documentation to see whether this procedure would be appropriate for your study.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have data in hand, which appears to be the casee, then the methods by which those data were acquired, the definitions of variables, etc. are already determined, and you would be able to share those if you chose.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 20:01:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319632#M16900</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2016-12-16T20:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319633#M16901</link>
      <description>&lt;P&gt;I don't understand. I don't have problem with the weight or the data. I just want to knnow how we can compute descriptive stastics (such as education by language) with parameters estimated with an effect coding (-1 0 1) rather than dummy (0 1).&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 20:07:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319633#M16901</guid>
      <dc:creator>Demographer</dc:creator>
      <dc:date>2016-12-16T20:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Weighted effect coding in regressions</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319658#M16904</link>
      <description>&lt;P&gt;A different coding system will not "make the sample fit the population." You really ought to look into SURVEYLOGISTIC, it might be just the right tool for your problem, and it is able to make the weighted predictions that you appear to be interested in.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 21:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Weighted-effect-coding-in-regressions/m-p/319658#M16904</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2016-12-16T21:03:37Z</dc:date>
    </item>
  </channel>
</rss>

