<?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: How to run regressions before certain date and get coefficient for each year in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702347#M215109</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;It works now. : ) Thank you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table temp as&lt;BR /&gt;select&lt;BR /&gt;a.id,&lt;BR /&gt;a.year,&lt;BR /&gt;b.year as pyear,&lt;BR /&gt;a.te,&lt;BR /&gt;b.te as pte,&lt;BR /&gt;b.lte as plte&lt;BR /&gt;from&lt;BR /&gt;lf.samplereg as a inner join&lt;BR /&gt;lf.samplereg as b on a.id=b.id and b.year &amp;lt; a.year&lt;BR /&gt;order by year, pyear;&lt;BR /&gt;quit;&lt;/P&gt;</description>
    <pubDate>Sun, 29 Nov 2020 21:13:16 GMT</pubDate>
    <dc:creator>Lipty</dc:creator>
    <dc:date>2020-11-29T21:13:16Z</dc:date>
    <item>
      <title>How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702313#M215098</link>
      <description>&lt;P&gt;I have the following variables:&lt;/P&gt;
&lt;P&gt;ID, year, TE, LTE&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;In year t&lt;/STRONG&gt;, I would like to&amp;nbsp;perform the following pooled cross-sectional/time-series regression using all firm-years with available data in &lt;STRONG&gt;all prior years&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P&gt;TE(t-1)=a+b*LTE(t-1)+error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example,&amp;nbsp;In 2007, we use all observations prior to 2007 (2005-2006), and in 2018 we use all observations prior to 2018 (2005-2017), etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The desired table should be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Year&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Coefficient for this year&lt;/P&gt;
&lt;P&gt;2006&lt;/P&gt;
&lt;P&gt;2007&lt;/P&gt;
&lt;P&gt;2008&lt;/P&gt;
&lt;P&gt;2009&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;2018&lt;/P&gt;
&lt;P&gt;2019&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is my sample data. Thank you very much in advance.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 16:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702313#M215098</guid>
      <dc:creator>Lipty</dc:creator>
      <dc:date>2020-11-29T16:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702317#M215099</link>
      <description>&lt;P&gt;This way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table temp as
select
    a.id,
    a.year,
    b.year as pyear,
    a.te,
    b.te as lte
from
    sasforum.samplereg as a inner join
    sasforum.samplereg as b on a.id=b.id and b.year &amp;lt; a.year
order by year, pyear;
quit;

proc reg data=temp outest=sampleEst noprint;
by year;
model te = lte;
run;

proc print noobs data=sampleEst; var year intercept lte; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PGStats_0-1606671306103.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52122iFD06D80C10FA2B7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PGStats_0-1606671306103.png" alt="PGStats_0-1606671306103.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 17:35:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702317#M215099</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-11-29T17:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702332#M215100</link>
      <description>&lt;P&gt;Thank you very much,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;&amp;nbsp;you are so helpful. You also helped me last time. The codes worked well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your codes are so neat. I have one question regarding sql, in which b.te as lte.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I compared the two data sets as follows. The TE and LTE of pyear 2007 in Temp should be equal to TE and LTE of year 2007 in Samplereg. The TE and LTE pair should be the same and not changing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is fixed, the codes are all set. Could you please help? Thank you again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Samplereg:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lipty_1-1606674476293.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52126iB768AB68E0FC296F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lipty_1-1606674476293.png" alt="Lipty_1-1606674476293.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Temp:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lipty_2-1606674531573.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52127iF93EE880AD1CD114/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lipty_2-1606674531573.png" alt="Lipty_2-1606674531573.png" /&gt;&lt;/span&gt;&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>Sun, 29 Nov 2020 18:36:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702332#M215100</guid>
      <dc:creator>Lipty</dc:creator>
      <dc:date>2020-11-29T18:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702334#M215101</link>
      <description>&lt;P&gt;Try looking at the data sorted by year and pyear:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=temp out=tempSort; where id="001004"; by year pyear; run;

proc print data=tempSort; by id year; id id year; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PGStats_0-1606676030443.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52128i556030121A53B8E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PGStats_0-1606676030443.png" alt="PGStats_0-1606676030443.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;.... in dataset temp, &lt;EM&gt;lte&lt;/EM&gt; is &lt;EM&gt;te&lt;/EM&gt; for the same &lt;EM&gt;id&lt;/EM&gt; in year &lt;EM&gt;pyear&lt;/EM&gt; (a previous year).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or maybe I don't understand what you are trying to do...&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 18:58:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702334#M215101</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-11-29T18:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702340#M215104</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;. Sorry for the confusion. The desired output is as follows:&lt;/P&gt;
&lt;P&gt;TE and lTE are a pair. They will stay the same. : ) When pyear is 2005 for any firm, TE and LTE should be the actual TE and LTE of 2005.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks.&lt;/P&gt;
&lt;DIV id="tinyMceEditorLipty_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;TABLE width="320"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;id&lt;/TD&gt;
&lt;TD width="64"&gt;year&lt;/TD&gt;
&lt;TD width="64"&gt;pyear&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;te&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;lte&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;001004&lt;/TD&gt;
&lt;TD&gt;2006&lt;/TD&gt;
&lt;TD&gt;2005&lt;/TD&gt;
&lt;TD&gt;-17.63&lt;/TD&gt;
&lt;TD&gt;-31.89&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&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&gt;id&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&gt;001004&lt;/TD&gt;
&lt;TD&gt;2007&lt;/TD&gt;
&lt;TD&gt;2005&lt;/TD&gt;
&lt;TD&gt;-17.63&lt;/TD&gt;
&lt;TD&gt;-31.89&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;2006&lt;/TD&gt;
&lt;TD&gt;-2.606&lt;/TD&gt;
&lt;TD&gt;-17.63&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&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&gt;id&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&gt;001004&lt;/TD&gt;
&lt;TD&gt;2008&lt;/TD&gt;
&lt;TD&gt;2005&lt;/TD&gt;
&lt;TD&gt;-17.63&lt;/TD&gt;
&lt;TD&gt;-31.89&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;2006&lt;/TD&gt;
&lt;TD&gt;-2.606&lt;/TD&gt;
&lt;TD&gt;-17.63&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;2007&lt;/TD&gt;
&lt;TD&gt;8.721&lt;/TD&gt;
&lt;TD&gt;-2.606&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&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&gt;id&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&gt;001004&lt;/TD&gt;
&lt;TD&gt;2009&lt;/TD&gt;
&lt;TD&gt;2005&lt;/TD&gt;
&lt;TD&gt;-17.63&lt;/TD&gt;
&lt;TD&gt;-31.89&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;2006&lt;/TD&gt;
&lt;TD&gt;-2.606&lt;/TD&gt;
&lt;TD&gt;-17.63&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;2007&lt;/TD&gt;
&lt;TD&gt;8.721&lt;/TD&gt;
&lt;TD&gt;-2.606&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;2008&lt;/TD&gt;
&lt;TD&gt;16.435&lt;/TD&gt;
&lt;TD&gt;8.721&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;DIV id="tinyMceEditorLipty_4" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="tinyMceEditorLipty_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorLipty_2" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorLipty_3" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 19:39:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702340#M215104</guid>
      <dc:creator>Lipty</dc:creator>
      <dc:date>2020-11-29T19:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702347#M215109</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;It works now. : ) Thank you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table temp as&lt;BR /&gt;select&lt;BR /&gt;a.id,&lt;BR /&gt;a.year,&lt;BR /&gt;b.year as pyear,&lt;BR /&gt;a.te,&lt;BR /&gt;b.te as pte,&lt;BR /&gt;b.lte as plte&lt;BR /&gt;from&lt;BR /&gt;lf.samplereg as a inner join&lt;BR /&gt;lf.samplereg as b on a.id=b.id and b.year &amp;lt; a.year&lt;BR /&gt;order by year, pyear;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 21:13:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702347#M215109</guid>
      <dc:creator>Lipty</dc:creator>
      <dc:date>2020-11-29T21:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702349#M215110</link>
      <description>&lt;P&gt;How about:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table temp as
select
    a.id,
    a.year,
    b.year as pyear,
    b.te,
    b.lte
from
    sasforum.samplereg as a inner join
    sasforum.samplereg as b on a.id=b.id and b.year &amp;lt; a.year 
order by year, pyear;
quit;

proc reg data=temp outest=sampleEst noprint;
by year;
model te = lte;
run;

proc print noobs data=sampleEst; var year intercept lte; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PGStats_0-1606684882410.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52129i866C7E5F80A5B504/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PGStats_0-1606684882410.png" alt="PGStats_0-1606684882410.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 21:22:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702349#M215110</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-11-29T21:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702350#M215111</link>
      <description>&lt;P&gt;Great, you figured it out before I replied, which shows that you know what you are doing! Congrats!&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 21:27:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702350#M215111</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-11-29T21:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to run regressions before certain date and get coefficient for each year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702352#M215112</link>
      <description>Many thanks~~~~~ &lt;BR /&gt;You are so helpful. Without your neat code, I had no clue. ^_^</description>
      <pubDate>Sun, 29 Nov 2020 21:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-run-regressions-before-certain-date-and-get-coefficient/m-p/702352#M215112</guid>
      <dc:creator>Lipty</dc:creator>
      <dc:date>2020-11-29T21:40:54Z</dc:date>
    </item>
  </channel>
</rss>

