I have data for one year that includes one date variable. There are many rows per individual. I need to be able to select individuals who satisfy three criteria within any 90 day period in the year. The dates are not equally spaced or the same for every individual. Any help would be greatly appreciated. This needs to be able to done in proc sql.
off the cuff...
proc sql;
select
t1.individual,
t1.datevar,
count(*) as Occurrences
from
have t1
inner join have t2
on t1.individual = t2.individual
and intck('day',t1.datevar, t2.datevar) <=90
group by t1.individual, t1.datevar
having count(*)>=3;
quit;
One pitfall to code around ...
INTCK will return a negative number when the first date is later than the second date. You probably don't want all of those included in your count.
Would sorting after the initial data pull fix that?
sorting wouldn't help.
proc sql;
select
t1.individual,
t1.datevar,
count(*) as Occurrences
from
have t1
inner join have t2
on t1.individual = t2.individual
and intck('day',t1.datevar, t2.datevar) <=90
and t2.datevar >= t1.datevar
group by t1.individual, t1.datevar
having count(*)>=3;
quit;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.
Ready to level-up your skills? Choose your own adventure.