I have calculated the mean of a variable using MEAN proc, now I want to use mean value for further calculation. Please help me to reuse or save the calculated mean value for further use.
data test;
input x ;
cards;
100
200
300
;
run;
proc means data=test;
var x;
run;
Here's two ways of accomplishing this solution.
https://github.com/statgeek/SAS-Tutorials/blob/master/add_average_value_to_dataset
You can output to dataset from that in a variety of ways (the manual is your friend), you could do;
proc means data=test; var x; output out=want mean=mean; run;
Thanks your solution also worked for me.
Here's two ways of accomplishing this solution.
https://github.com/statgeek/SAS-Tutorials/blob/master/add_average_value_to_dataset
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.