PROC SUMMARY should be able to do this as well.
Something like
proc summary data=have nway; class IDNumber Date; format date monyy.; var value; output out=want mean=meanvalue; run;
if yo like a report you can use the tabulate procedure followed by a transpose:
proc tabulate data=one out=two;
class idnumber month;
table idnumber, month*value*mean;
var value;
run;
proc transpose data=two out=three;
by idnumber;
id month;
var value_Mean;
run;
//Fredrik
Hi.
Thank you for the response this is working perfectly thank you, clearly I was failing as I was using the wrong procedure !!
Last question if I may, if I wanted the same table but summed instead of mean would it be this
proc tabulate data=ZFinal out=Output;
class FDAccountNumber Month;
table FDAccountNumber, Month*Amount;
var Amount;
run;
PROC SUMMARY should be able to do this as well.
Something like
proc summary data=have nway; class IDNumber Date; format date monyy.; var value; output out=want mean=meanvalue; run;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.