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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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