<?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: REM Statements in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417156#M21901</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/180153"&gt;@nslw4r&lt;/a&gt; wrote:&lt;BR /&gt;Its an unbalanced panel. Some districts have only a few price listings within the district while others have 150-200. In the code the I put up [3] should be a random effects model. I guess I did a proc panel statement (sorry for the confusion). Is this not the right way to do a REM?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Perhaps you are looking for Proc GLM with a RANDOM statement to indicate the variables you expect to provide the random effect.&lt;/P&gt;
&lt;P&gt;Or Proc Mixed.&lt;/P&gt;</description>
    <pubDate>Wed, 29 Nov 2017 17:03:06 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-11-29T17:03:06Z</dc:date>
    <item>
      <title>REM Statements</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417072#M21894</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having a problem with sas code. When I run this I am getting only one intercept and parameter estimate for the REM proc in SAS (this is referred to as [3]). What am I doing wrong with my code? Shouldnt I be getting back parameters for all school districts in the form of intercepts? I am just running for individual effects hence the "ranone". I just am not sure where the error is. Some help would be appreciated. Thanks in advance! P.S. I have 22 elementary schools in the data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2017-11-29 08.07.15.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16906iD0829A4A0E46970A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2017-11-29 08.07.15.png" alt="Screenshot 2017-11-29 08.07.15.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 14:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417072#M21894</guid>
      <dc:creator>nslw4r</dc:creator>
      <dc:date>2017-11-29T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: REM Statements</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417081#M21895</link>
      <description>&lt;P&gt;Post code as text into code box opened with either of the menu icons {I} or the "running man".&lt;/P&gt;
&lt;P&gt;Better is to post the code and messages from the LOG as it will show any syntax error messages or diagnostics.. Post that into a code box&lt;/P&gt;
&lt;P&gt;Blue and gray on black background is nearly impossible to read plus the image does not allow copy and paste to show specific lines or minor edit suggestions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have to assume you mean the Proc REG as there is no REM in you code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you have a line that compares your total_sq_ft and current_price&amp;nbsp;variable to the value '(blank)' in a data step that implies your variables&amp;nbsp;are character and not numeric. Proc Reg only uses numeric values on the model statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want results per school district you would have to tell the model to do so. One way is a BY statement with the school district variable. The data would have to be sorted by the school district. Then you will get output for each school district.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have 22 elementary schools how many are in each school district? If you don't have many schools per district your regressions may not be terribly useful.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 15:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417081#M21895</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-29T15:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: REM Statements</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417085#M21896</link>
      <description>Its an unbalanced panel. Some districts have only a few price listings within the district while others have 150-200. In the code the I put up [3] should be a random effects model. I guess I did a proc panel statement (sorry for the confusion). Is this not the right way to do a REM?</description>
      <pubDate>Wed, 29 Nov 2017 15:26:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417085#M21896</guid>
      <dc:creator>nslw4r</dc:creator>
      <dc:date>2017-11-29T15:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: REM Statements</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417104#M21897</link>
      <description>&lt;P&gt;Is it REG, which is a linear regression or do you genuinely mean REM - which you've mentioned multiple times now. If it is REM that's not something I'm familiar with regards to SAS, can you point to a reference or docs for that PROC?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 15:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417104#M21897</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-29T15:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: REM Statements</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417156#M21901</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/180153"&gt;@nslw4r&lt;/a&gt; wrote:&lt;BR /&gt;Its an unbalanced panel. Some districts have only a few price listings within the district while others have 150-200. In the code the I put up [3] should be a random effects model. I guess I did a proc panel statement (sorry for the confusion). Is this not the right way to do a REM?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Perhaps you are looking for Proc GLM with a RANDOM statement to indicate the variables you expect to provide the random effect.&lt;/P&gt;
&lt;P&gt;Or Proc Mixed.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 17:03:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/REM-Statements/m-p/417156#M21901</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-11-29T17:03:06Z</dc:date>
    </item>
  </channel>
</rss>

