<?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: Regression using maximum likelihood estimation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284737#M15023</link>
    <description>&lt;P&gt;It is&amp;nbsp;ARIMA Model. Check ARIMA Procedure .&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Jul 2016 03:37:45 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-07-15T03:37:45Z</dc:date>
    <item>
      <title>Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284717#M15020</link>
      <description>&lt;P&gt;I need to run a distributed lag regression with a lagged dependent variable of the form:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;St = µ + βAt + λSt−1 + v&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where v = et - &lt;SPAN&gt;λ&lt;/SPAN&gt;et-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to the literature this needs to be computed using MLE rather than OLS. Proc reg obviously uses OLS, so what PROC do I need to run?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 01:27:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284717#M15020</guid>
      <dc:creator>bwar88</dc:creator>
      <dc:date>2016-07-15T01:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284728#M15021</link>
      <description>&lt;P&gt;Use PROC GENMOD :&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 genmod data=sashelp.class;
model weight=age height/dist=normal link=identity noscale;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Jul 2016 02:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284728#M15021</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-15T02:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284732#M15022</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is a time series data.&amp;nbsp;One key assumption in OLS is that the errors are independent of each other. In your model residuals seem to be correlated which is not desirable to use OLS for time series data since the assumptions on which the classical linear regression model is based will be violated. Try looking into SAS procedures for time series analysis. This requires SAS ETS.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 02:35:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284732#M15022</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2016-07-15T02:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284737#M15023</link>
      <description>&lt;P&gt;It is&amp;nbsp;ARIMA Model. Check ARIMA Procedure .&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 03:37:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284737#M15023</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-15T03:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284798#M15024</link>
      <description>&lt;P&gt;It needs to be a regression model as I need to see the coefficients rather than just forecast the future. So is PROC GENMOD&amp;nbsp;what I need?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 10:36:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284798#M15024</guid>
      <dc:creator>bwar88</dc:creator>
      <dc:date>2016-07-15T10:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284939#M15034</link>
      <description>&lt;P&gt;You can get "regression" coefficients from time series analysis--what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/42042"&gt;@stat_sas﻿&lt;/a&gt;&amp;nbsp;says about the errors is absolutely correct. &amp;nbsp;You could use&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp﻿&lt;/a&gt;'s suggestion of PROC ARIMA, or look at PROC MODEL. &amp;nbsp;If you do not have access to SAS/ETS, then fitting this sort of model is going to require a fair amount of macro code, as you will have to iteratively refit the data using one of the procedures that allow you to specify a time-dependent error structure--going back and forth between the original data and the lagged data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 19:04:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/284939#M15034</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-07-15T19:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regression using maximum likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/285076#M15053</link>
      <description>If you need constrain the coefficients sum to 1, I think you need PROC GENMOD + offset= option.
PROC ARIMA can't do that.</description>
      <pubDate>Sun, 17 Jul 2016 01:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Regression-using-maximum-likelihood-estimation/m-p/285076#M15053</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-17T01:16:57Z</dc:date>
    </item>
  </channel>
</rss>

