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 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!

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