BookmarkSubscribeRSS Feed
Abz_17
Calcite | Level 5

Hi All, 

 

I have a dataset which starts on 4th Jan 2021. What I want to do is show the rolling 7 day average for each of these dates so for example 12/02/2023 i want to know what the average has been over the last 7 days, and on 11/02/2023 the average over the last 7 days of that date etc etc. I have attached my sample file, if anyone could help that would be great. 

3 REPLIES 3
PaigeMiller
Diamond | Level 26

If you have SAS/ETS licensed, you can use PROC EXPAND. See the examples here: https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/etsug/etsug_expand_details19.htm#etsug_expand...

--
Paige Miller
ballardw
Super User

@Abz_17 wrote:

Hi All, 

 

I have a dataset which starts on 4th Jan 2021. What I want to do is show the rolling 7 day average for each of these dates so for example 12/02/2023 i want to know what the average has been over the last 7 days, and on 11/02/2023 the average over the last 7 days of that date etc etc. I have attached my sample file, if anyone could help that would be great. 


Average of what?

 

If it is of the column in that text file called Rejection_rate, which shows a percent sign in the value, then you need to be very aware that averages of percent values are seldom the actual percent average unless the denominator is identical for every record:

 

Example

n   reject   rejection rate

2   1          50%

1000   1    0.1%

 

if you "average" those two you get a result of 50.1 / 2 = 25.05%. But the combined rate is (1 +1)/(2+1000) which is 0.2% (rounded somewhat from 0.199601

If your denominator is similar every single observation then just have smaller less obvious errors.

 

So if you want to do a running rejection rate you have to accumulate the numerators and denominators for each observation before calculating a "running rate".

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 706 views
  • 0 likes
  • 4 in conversation