Please help me to do the following problem.
Revenue informations are avilabe for different years from 2005 to 2009 with the variable "Revenue". write the sas macro which
will applay "Means and univariable " procedure on each year for revenue avilabe.
without sample data it is not possible to present the accurate code. This is an untested code
It creates year wise separate dataset for means and univariate
%macro test(dsetin,year,revenue);
%do i=2005 %to 2009;
proc means data=&dsetin;
where &year=&i;
var &revenue;
output out=means_&i. mean=;
run;
proc univariate data=&dsetin;
where &year=&i;
var &revenue;
output out=univariate_&i. mean=;
run;
%end;
%mend;
Please help me to do the following problem.
Revenue informations are avilabe for different years from 2005 to 2009 with the variable "Revenue". write the sas macro which
will applay "Means and univariable " procedure on each year for revenue avilabe.
without sample data it is not possible to present the accurate code. This is an untested code
It creates year wise separate dataset for means and univariate
%macro test(dsetin,year,revenue);
%do i=2005 %to 2009;
proc means data=&dsetin;
where &year=&i;
var &revenue;
output out=means_&i. mean=;
run;
proc univariate data=&dsetin;
where &year=&i;
var &revenue;
output out=univariate_&i. mean=;
run;
%end;
%mend;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.