I am required to run PROC MEANS and PROC UNIVARIATE but PROC UNIVARIATE already has some of the things that PROC MEANS does so how do I get rid of those for PROC UNIVARIATE? Thanks!
My code is right now is:
PROC MEANS DATA=RESULTS_ALL;
VAR AGE;
RUN;
PROC UNIVARIATE DATA=RESULTS_ALL;
VAR AGE;
RUN;
Are you asking how to suppress ALL of the output from PROC UNIVARIATE?
Or are you asking how to suppress SOME of the output from PROC UNIVARIATE?
it's not even clear to me why you need both PROC MEANS and PROC UNIVARIATE in sequence. Wouldn't just PROC UNIVARIATE give you everything you need in this case?
Just some of PROC UNIVARIATE. And it's for an assignment so I'm required to use both PROC MEANS and PROC UNIVARIATE. If I wasn't then I would just use PROC UNIVARIATE.
You can use ODS SELECT to select the parts of PROC UNIVARIATE you want to keep.
So, first use
ODS TRACE ON;
then run PROC UNIVARIATE and all the parts of PROC UNIVARIATE will be specified in the SASLOG. Then run UNVIARIATE again with
ODS SELECT <part1> <part2> ... ;
where <part1> etc are the actual names of the parts of PROC UNIVARIATE as shown in the SASLOG.
Look up tutorials on SAS ODS SELECT for more details.
Thanks! I'll see if it works.
proc univariate data=sashelp.class noprint;
var age;
run;
Thanks! I'll try it.
PaigeMiller suggested, "Look up tutorials on SAS ODS SELECT for more details." One reference that addresses this subject is
Thanks! I'll take a look at it.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.