<?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 Time series beta from cross sectional regression in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/400867#M278684</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a panel data shown below with "id" identifies different stocks and "month" is monthly dates column. The data set is sorted by id and month.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have; 
  input id month x1 x2 y;
  datalines;
45  09/30/2004  -0.30  1.34  1
45  09/30/2004  -0.30  1.34  1
45  05/31/2005  -0.08  0.78  0
45  12/31/2008    .     .    0
48  09/30/2001  -0.01  1.88  1
48  02/28/2004   0.78  1.50  0
48  05/31/2005    .    0.54  1
49  01/31/2002   0.05   .    1     
51  03/31/2001  -0.06  1.48  0
55  05/31/2005   0.30  1.21  1
55  05/31/2005   0.30  1.21  1
55  11/30/2007   .      .    0
; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;I need to run cross sectional regression (proc reg) "by month". So the purpose is to&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;observe variations in coefficient (beta) of "x2" over time i.e. over various months&lt;/STRONG&gt;&lt;SPAN&gt;. I am using following proc&amp;nbsp;but there is an Error saying "month" is not sorted in ascending order. When I sort the data by month and run the regression, resulting output gives "0" coefficients for missing values.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=have;
 model y=x1 x2; by month; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Kindly guide me in this regard. I also need to know how to create a data set based on time variant coefficients of only x2 along-with their corresponding months (date), and how to ultimately draw their graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Oct 2017 22:13:38 GMT</pubDate>
    <dc:creator>Saba1</dc:creator>
    <dc:date>2017-10-05T22:13:38Z</dc:date>
    <item>
      <title>Time series beta from cross sectional regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/400867#M278684</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a panel data shown below with "id" identifies different stocks and "month" is monthly dates column. The data set is sorted by id and month.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have; 
  input id month x1 x2 y;
  datalines;
45  09/30/2004  -0.30  1.34  1
45  09/30/2004  -0.30  1.34  1
45  05/31/2005  -0.08  0.78  0
45  12/31/2008    .     .    0
48  09/30/2001  -0.01  1.88  1
48  02/28/2004   0.78  1.50  0
48  05/31/2005    .    0.54  1
49  01/31/2002   0.05   .    1     
51  03/31/2001  -0.06  1.48  0
55  05/31/2005   0.30  1.21  1
55  05/31/2005   0.30  1.21  1
55  11/30/2007   .      .    0
; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;I need to run cross sectional regression (proc reg) "by month". So the purpose is to&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;observe variations in coefficient (beta) of "x2" over time i.e. over various months&lt;/STRONG&gt;&lt;SPAN&gt;. I am using following proc&amp;nbsp;but there is an Error saying "month" is not sorted in ascending order. When I sort the data by month and run the regression, resulting output gives "0" coefficients for missing values.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=have;
 model y=x1 x2; by month; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Kindly guide me in this regard. I also need to know how to create a data set based on time variant coefficients of only x2 along-with their corresponding months (date), and how to ultimately draw their graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 22:13:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/400867#M278684</guid>
      <dc:creator>Saba1</dc:creator>
      <dc:date>2017-10-05T22:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Time series beta from cross sectional regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/401036#M278685</link>
      <description>&lt;P&gt;See the code in Chapter 4 of &lt;EM&gt;Using SAS in Financial Research&lt;/EM&gt; (Boehmer, Broussard, and Kallunki, 2002) &lt;A href="https://www.sas.com/store/books/categories/usage-and-reference/using-sas-in-financial-research/prodBK_57601_en.html" target="_self"&gt;Code from the book is available&amp;nbsp;for free from the book's website.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 16:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/401036#M278685</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-10-04T16:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Time series beta from cross sectional regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/401535#M278686</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;Thanks. The book is quite useful with example codes. But I do not need a rolling regression. I have edited my question and will be grateful if you kindly help me in the context of this question.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 22:16:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Time-series-beta-from-cross-sectional-regression/m-p/401535#M278686</guid>
      <dc:creator>Saba1</dc:creator>
      <dc:date>2017-10-05T22:16:14Z</dc:date>
    </item>
  </channel>
</rss>

