BookmarkSubscribeRSS Feed
hunluuu947
Calcite | Level 5

Hi I would like to calculate the AUC following the formula below.

hunluuu947_0-1667595969759.png

In order to do this I need to use the data from the previous row. I wrote my code like this:

hunluuu947_1-1667596221679.png

However the output data is missing the AUC for the second row like below

hunluuu947_2-1667596312527.png

How could I fix it?

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Don't include LAG in an IF statement or the ELSE clause.

 

Example:

 

prev_value=lag(value);
if x>5 then z=value;
else if x<=5 then z=prev_value;
--
Paige Miller
hunluuu947
Calcite | Level 5
thank you so much!

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 16. 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
  • 2 replies
  • 376 views
  • 1 like
  • 2 in conversation