<?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: rolling standard deviation calculation in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160035#M41717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code works &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can always download data for 24 months prior to 1990 when my data period starts. However in the current output, I have standard deviations for the year 1991, based on 12-month returns which is incorrect. In PROC EXPAND, trimleft=23 took care of it. Do we have an equivalent function in proc sql?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Aug 2014 21:10:17 GMT</pubDate>
    <dc:creator>namrata</dc:creator>
    <dc:date>2014-08-24T21:10:17Z</dc:date>
    <item>
      <title>rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160026#M41708</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;Please find attached a example out of a large dataset, in which I want to calculate the 3-year rolling standard deviation of variable x, from 1982 to 1989.&lt;/P&gt;&lt;P&gt;For example, the standard deviation in 1982 is the standard deviation of x in 1980, 1981 and 1982.&lt;/P&gt;&lt;P&gt;The dataset is a panel, but there are missing values in variable x. For the second company code as an example, I want the standard deviation in 1982 to be the rolling standard deviation of 5 (in 1980) and 7 (in 1981), although x is missing in 1982 (is it reasonable?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also found there is similar question in the forum (like &lt;A __default_attr="159434" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;), but mine is a little bit different from that and I did not know how to modify based on that since I am not familiar with array.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody do me a favor? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Feb 2014 02:53:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160026#M41708</guid>
      <dc:creator>comeon2012</dc:creator>
      <dc:date>2014-02-03T02:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160027#M41709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HaHa, Actually Patrick's solution is not good . It is very suitable for SQL's sub-query which is a big advantage for SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data have;
infile cards dlm=',' truncover;
input code year x;
cards;
255956,1980,
255956,1981,
255956,1982,
255956,1983,
255956,1984,5
255956,1985,7
255956,1986,4
255956,1987,6
255956,1988,2
255956,1989,1
255964,1980,5
255964,1981,7
255964,1982,
255964,1983,
255964,1984,5
255964,1985,3
255964,1986,7
255964,1987,3
255964,1988,8
255964,1989,7
;
run;
proc sql;
create table want as
 select *,(select std(x) from have where year between a.year-2 and a.year and code=a.code) as rolling_std
&amp;nbsp; from have as a;
quit;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by:Overlook the code variable . Fixed.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xia keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 02:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160027#M41709</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-02-04T02:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160028#M41710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Ksharp&lt;/P&gt;&lt;P&gt;A bit late but: Happy New Year. Hope you're well.&lt;/P&gt;&lt;P&gt;And nice that you haven't forgotten us here (I guess you're now spending more time in Java related forums).&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 05:50:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160028#M41710</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-02-04T05:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160029#M41711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resurrection of the Ksharp! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;. Please don't be a stranger, I have always enjoyed reading your posts and learning from them. Hope Java is treating you as well as SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 17:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160029#M41711</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-02-04T17:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160030#M41712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need something similar to the above requirement - standard deviation(std) of monthly stock returns(ret) for the twenty-four months through the end of the last month of year (t-1). I have attached a sample file.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I tried to modify your code as:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc sql&lt;/P&gt;&lt;P&gt;create table std as&lt;/P&gt;&lt;P&gt;select *, (std(ret) from have where month between month-36 and month-12 and cusip=a.cusip) as rolling_std&lt;/P&gt;&lt;P&gt;from have as a;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code did not return values against rolling_std. Is it a problem with (month-12)?&lt;/P&gt;&lt;P&gt;I read that truncover allows reading variable-length records; I do not think that should be a problem here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;Thanks &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2014 00:45:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160030#M41712</guid>
      <dc:creator>namrata</dc:creator>
      <dc:date>2014-08-23T00:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160031#M41713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure. I noticed that there is a date variable. you can use it to judge ?&lt;/P&gt;&lt;P&gt;But maybe you need a lot of time to run it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;proc import datafile='c:\temp\sample.csv' out=temp dbms=csv replace;
guessingrows=32767;
run;
data have;
 set temp;
 d=input(put(date,best12.),yymmdd12.);
 r=input(ret,?? best32.);
 drop date ret;
 format d date9.;
run;


proc sql ;
create table std as
select *, (select std(r) from have where d between intnx('month',a.d,-36,'s') and intnx('month',a.d,-12,'s') and cusip=a.cusip) as rolling_std
from have as a;
quit;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Aug 2014 13:47:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160031#M41713</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-08-23T13:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160032#M41714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13px;"&gt;Thank you, Ksharp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13px;"&gt;I shall try this code and let you know it it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13px;"&gt;I had actually tried your code [select *,(select std(x) from have where year between a.month-2 and a.month and cusip=a.cusip) as rolling_std] on my data.. For some reason, the std deviations in my output were wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13px;"&gt;I had simply used month=month(date). Not sure if that is an issue. I just checked month is a numeric variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Aug 2014 02:43:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160032#M41714</guid>
      <dc:creator>namrata</dc:creator>
      <dc:date>2014-08-24T02:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160033#M41715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the code but it yields a constant std dev value for each cusip. Not sure where it goes wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using proc expand and I think this will work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Proc expand date=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;temp1 OUT=rollingstd ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;by cusip;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;convert ret=std/method=none transformout=(nomiss movstd=24 trimleft=23); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;* I intend to download prior period's data for each firm so that I do not have missing ret for the first 23 months for the relevant time period.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;* Next, I shall take the lag std so that once I merge this monthly dataset with the yearly dataset, I can have standard deviation(std) of monthly stock returns(ret) for the twenty-four months through the end of the last month of year (t-1). I hope I am making sense here&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Aug 2014 03:53:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160033#M41715</guid>
      <dc:creator>namrata</dc:creator>
      <dc:date>2014-08-24T03:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160034#M41716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, For my opinion , I would like to use a date variable to judge the range of MONTH , YEAR ... , therefore when I saw a variable DATE in your data , I decide to use it instead of your variable MONTH , I don't know if it was suitable .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; d=input(put(date,best12.),yymmdd12.);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;And in your original data, I noticed there are some character in RET , so I force to change it into numeric variable :&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; r=input(ret,?? best32.);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I tried the code but it yields a constant std dev value for each cusip. &lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;After that, I get std by sub-sql . and don't get a constand std for each cusip .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want MONTH as the condition , try this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc import datafile='c:\temp\sample.csv' out=temp dbms=csv replace;&lt;/P&gt;&lt;P&gt;guessingrows=32767;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;set temp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; d=mdy(month,1,year);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;r=input(ret,?? best32.);&lt;/P&gt;&lt;P&gt;drop date ret;&lt;/P&gt;&lt;P&gt;format d date9.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql ;&lt;/P&gt;&lt;P&gt;create table std as&lt;/P&gt;&lt;P&gt;select *, (select std(r) from have where d between intnx('month',a.d,-36,'s') and intnx('month',a.d,-12,'s') and cusip=a.cusip) as rolling_std&lt;/P&gt;&lt;P&gt;from have as a;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10856i98CBC2CBE2638123/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="1.png" title="1.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Aug 2014 11:50:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160034#M41716</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-08-24T11:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160035#M41717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code works &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can always download data for 24 months prior to 1990 when my data period starts. However in the current output, I have standard deviations for the year 1991, based on 12-month returns which is incorrect. In PROC EXPAND, trimleft=23 took care of it. Do we have an equivalent function in proc sql?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Aug 2014 21:10:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160035#M41717</guid>
      <dc:creator>namrata</dc:creator>
      <dc:date>2014-08-24T21:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160036#M41718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi namrata&lt;/P&gt;&lt;P&gt;Can you please in the future start a new post for a new question? Simply copy/past a cross-reference (hyperlink) to the old and already answered question.&lt;/P&gt;&lt;P&gt;This way we're getting posts where the question and the most suitable answer is on the very top (once the question is answered and the OP also does the job and marks the most suitable answer as correct). This allows then to search through past posts and decide very fast if something is as needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Aug 2014 22:12:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160036#M41718</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2014-08-24T22:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160037#M41719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, Patrick. I will keep that in mind.&lt;/P&gt;&lt;P&gt;I had thought that because I am using the earlier code in this thread, I should continue from thereon &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2014 06:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160037#M41719</guid>
      <dc:creator>namrata</dc:creator>
      <dc:date>2014-08-25T06:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: rolling standard deviation calculation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160038#M41720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand what you mean. Can you make an example to explain your problem more ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2014 12:02:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/rolling-standard-deviation-calculation/m-p/160038#M41720</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-08-25T12:02:42Z</dc:date>
    </item>
  </channel>
</rss>

