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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1048 views
  • 0 likes
  • 2 in conversation