AP002 3 23OCT2013
AP002 4 01NOV2013
AP002 5 01NOV2013
AP002 6 14AUG2014
AP002 7 05SEP2014
I am trying to sum the number of dates by week and by month. This is the format for my dates and IDs.....
What would you expect the output to look like given that input?
is the result to be a data set or a report?
So those dates are each time a person made a call. I want to total the number of dates per id every four weeks. (or analyze the change by every four weeks)
Add two format into two proc means :
data have;
input id $ n date date9.;
format date date9.;
cards;
AP002 3 23OCT2013
AP002 4 04NOV2013
AP002 5 07NOV2013
AP002 6 14AUG2014
AP002 7 05SEP2014
;
run;
proc summary data=have;
by id date;
var n;
format date monyy.;
output out=want1 sum=sum_n;
run;
proc summary data=have;
by id date;
var n;
format date weekv5.;
output out=want2 sum=sum_n;
run;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.