BookmarkSubscribeRSS Feed
xchoit
Calcite | Level 5

How do I create a tagging (DelinquentTag) variable based on that 3 variables across time.    

Example:

Data:

Date               Accno     Delinquent       DelinquentTag

30Nov2011     123          0                    N

31Dec2011     123          1                    Y

31Jan2012      123          0                    Y

30Nov2011     234          0                    N

31Dec2011     234          0                    N

30Nov2011     235          1                    Y

31Dec2011     235          1                    Y

Regards,

xchoit

2 REPLIES 2
LinusH
Tourmaline | Level 20

Do you want to mark all roes (for each accno) as "Y" from the record where delinquent is = 1, and thereafter?

You could archive this by using first.-logic together with the retain statement.

Data never sleeps
data_null__
Jade | Level 19

Once the acc becomes delinquent stop checking and "retain" true.

data acc;
   input Date:date. Accno:$3. Delinquent;
   format date date9.;
  
cards;
30Nov2011     123          0              
31Dec2011     123          1              
31Jan2012      123          0             
30Nov2011     234          0              
31Dec2011     234          0              
30Nov2011     235          1              
31Dec2011     235          1              
;;;;
   run;
data deliq;
   flag = 0;
  
do until(last.accno);
      set acc;
      by accno;
      if not flag then flag = ifn(Delinquent,1,0);
      output;
     
end;
  
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 739 views
  • 0 likes
  • 3 in conversation