<?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: Code to display Mean square errors when using proc mixed in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166624#M8715</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is important to realize that in likelihood-based mixed-model analysis, there is no such thing as a sum of squares or a mean square. F statistics come from contrasts. As data _null_ indicates, you can get a moment-based analysis using method=type3, which includes mean squares, etc. However, this is not the same thing as a likelihood-based analysis, the latter being the preferred method for mixed models (and the default in MIXED). For a certain class of models and balanced data sets, the test results will be the same, but in general the results will differ. Moreover, for a wider class of mixed models, there is no moment-based version. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Feb 2014 15:33:24 GMT</pubDate>
    <dc:creator>lvm</dc:creator>
    <dc:date>2014-02-07T15:33:24Z</dc:date>
    <item>
      <title>Code to display Mean square errors when using proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166622#M8713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using GLM I always get a table with the mean square errors for each of my dependent variables, but this is not the case when using proc mixed; is there a code that I can add to my model when using proc mixed in order to get this information??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caroline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 11:41:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166622#M8713</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2014-02-07T11:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Code to display Mean square errors when using proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166623#M8714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps you need METHOD=TYPE3;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; sp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; Block A B Y @@;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;datalines&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffc0;"&gt;1 1 1&amp;nbsp; 56&amp;nbsp; 1 1 2&amp;nbsp; 41&lt;BR /&gt;1 2 1&amp;nbsp; 50&amp;nbsp; 1 2 2&amp;nbsp; 36&lt;BR /&gt;1 3 1&amp;nbsp; 39&amp;nbsp; 1 3 2&amp;nbsp; 35&lt;BR /&gt;2 1 1&amp;nbsp; 30&amp;nbsp; 2 1 2&amp;nbsp; 25&lt;BR /&gt;2 2 1&amp;nbsp; 36&amp;nbsp; 2 2 2&amp;nbsp; 28&lt;BR /&gt;2 3 1&amp;nbsp; 33&amp;nbsp; 2 3 2&amp;nbsp; 30&lt;BR /&gt;3 1 1&amp;nbsp; 32&amp;nbsp; 3 1 2&amp;nbsp; 24&lt;BR /&gt;3 2 1&amp;nbsp; 31&amp;nbsp; 3 2 2&amp;nbsp; 27&lt;BR /&gt;3 3 1&amp;nbsp; 15&amp;nbsp; 3 3 2&amp;nbsp; 19&lt;BR /&gt;4 1 1&amp;nbsp; 30&amp;nbsp; 4 1 2&amp;nbsp; 25&lt;BR /&gt;4 2 1&amp;nbsp; 35&amp;nbsp; 4 2 2&amp;nbsp; 30&lt;BR /&gt;4 3 1&amp;nbsp; 17&amp;nbsp; 4 3 2&amp;nbsp; 18&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;;;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;mixed&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;method&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=type3;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; A B Block;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;model&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; Y = A B A*B;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;random&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; Block A*Block;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 13:42:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166623#M8714</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-02-07T13:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Code to display Mean square errors when using proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166624#M8715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is important to realize that in likelihood-based mixed-model analysis, there is no such thing as a sum of squares or a mean square. F statistics come from contrasts. As data _null_ indicates, you can get a moment-based analysis using method=type3, which includes mean squares, etc. However, this is not the same thing as a likelihood-based analysis, the latter being the preferred method for mixed models (and the default in MIXED). For a certain class of models and balanced data sets, the test results will be the same, but in general the results will differ. Moreover, for a wider class of mixed models, there is no moment-based version. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 15:33:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166624#M8715</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2014-02-07T15:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Code to display Mean square errors when using proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166625#M8716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much data null for the trick, it works for my data!&amp;nbsp; Nevertheless I will keep in mind what lvm said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caroline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 10:01:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166625#M8716</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2014-02-10T10:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Code to display Mean square errors when using proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166626#M8717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for the comment!&amp;nbsp; I´m glad to know this. Eventhough works for my data what data null suggested, I will keep in mind what you said about proc mixed and will be carefull when using the information obtained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caroline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 10:05:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Code-to-display-Mean-square-errors-when-using-proc-mixed/m-p/166626#M8717</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2014-02-10T10:05:35Z</dc:date>
    </item>
  </channel>
</rss>

