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%.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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