BookmarkSubscribeRSS Feed
Amalik
Calcite | Level 5

Hi,

 

I want to delete those observations from my dataset which are greater than or less than 50% from the previous observation. e.g.given the following dataset, I would like to drop the second and the last observation.Any suggestions on how to do this?

 

datereturns
1.1.20001%
1.2.200051%
1.3.20001.20%
1.4.20003%
1.5.2000-50%
1 REPLY 1
Kurt_Bremser
Super User

Use the lag() function:

data want;
set have;
if abs(lag(returns) - returns) >= .5 then delete;
run;

Note I used 0.5 because I assumed you use the standard percent format, where 1 = 100%.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1028 views
  • 0 likes
  • 2 in conversation