How i can assign result of procedure to variable?
For example i need assign standard deviation value to variable SD from
PROC MEANS STD DATA = smoke3;
run;
So i can use it to find margin of error:
me=SD/sqrt(n);
Thank you
Generate a data set with the summary values you want and then in a data step do additional calculations:
I tend to prefer Proc summary which does basically the same as proc means but default output sets are structured differently.
Here is an example using the SASHELP.Class data set. Proc summary will require the names of the analyis variables, a variable list, or use of the keyword _numeric_ on the VAR statement. The autoname creates output variables named as your input variables with a suffix of the statistic requested.
Proc summary data=sashelp.class;
var Age Height Weight;
output out=work.sum std= n= /autoname;
run;
data want;
set work.sum;
AgeMe = age_StdDev/sqrt(Age_N);
HeightMe = Height_StdDev/sqrt(Height_N);
WeightMe = Weight_StdDev/sqrt(Weight_N);
run;
How i can assign result of procedure to variable?
For example i need assign standard deviation value to variable SD from
PROC MEANS STD DATA = smoke3;
run;
So i can use it to find margin of error:
me=SD/sqrt(n);
Thank you
Create an output dataset with the output statement in proc means. Then run a data _null_ step from that dataset and use call symput to create a macro variable.
Generate a data set with the summary values you want and then in a data step do additional calculations:
I tend to prefer Proc summary which does basically the same as proc means but default output sets are structured differently.
Here is an example using the SASHELP.Class data set. Proc summary will require the names of the analyis variables, a variable list, or use of the keyword _numeric_ on the VAR statement. The autoname creates output variables named as your input variables with a suffix of the statistic requested.
Proc summary data=sashelp.class;
var Age Height Weight;
output out=work.sum std= n= /autoname;
run;
data want;
set work.sum;
AgeMe = age_StdDev/sqrt(Age_N);
HeightMe = Height_StdDev/sqrt(Height_N);
WeightMe = Weight_StdDev/sqrt(Weight_N);
run;
One other solution, because sometimes you want the statistics back in the original data set is to SET it back in.
The variables from proc summary will be added to the want data set for inclusion.
PS if you're looking to standardize or scale variables also take a look at PROC STANDARD and STDIZE.
Proc summary data=sashelp.class;
var Age Height Weight;
output out=work.sum std= n= /autoname;
run;
data want;
if _n_ = 1 then set sum;
set sashelp.class;
run;
proc means data=sashelp.class std stderr; var Age Height Weight; run;
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.