BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ChuksManuel
Pyrite | Level 9

Hello programmers,

 

How can i use the lag function to print out patients that have 15% or more reduction in systolic BP and 8% or more reduction in diastolic BP between visits 1 and 5.

 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
This paper is a good reference for leads/lags and how they work.
https://support.sas.com/resources/papers/proceedings16/11221-2016.pdf

View solution in original post

3 REPLIES 3
ChuksManuel
Pyrite | Level 9

DATA five;
SET four;
lag_systolic = lag(systolic);
dif_systolic = systolic - lag_systolic;
per_incr_sys = (dif_systolic/lag_systolic)*100;
RUN;
proc print; run;

data six;
set five;
lag_diastolic = lag(diastolic);
dif_diastolic= diastolic- lag_diastolic;
per_incr_dia = (dif_diastolic/lag_diastolic)*100;
run;
proc print; run;

data seven;
set six;
if per_incr_sys =< -15 and per_incr_dia =<-8 then output;
run;
proc print; run;

Reeza
Super User
My default would be to recommend RETAIN or data step merge instead.

You could use LAG4/LAG5 but then you need to be absolutely sure you'll have the correct number of records for each ID (5 visits).

You may also want to look into the DIF() function instead of LAG() same idea, except it differences automatically. Same concept though, need to be sure you have the correct number of observations.
Reeza
Super User
This paper is a good reference for leads/lags and how they work.
https://support.sas.com/resources/papers/proceedings16/11221-2016.pdf

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!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 667 views
  • 0 likes
  • 2 in conversation