Hello Experts,
Is it possible to create the report with proc tabulate only with _numeric_ variables ? I would like have a list of variables at the right.
I would like to use the proc tabulate because I would like to display the formatted statistics values.
My code is :
proc tabulate data=bdd;
var _numeric_;
table var,_numeric_*(N mean std var cv median max min q1 q3);
run;
Use Maxim 4.
proc tabulate data=sashelp.class;
var _numeric_;
table _numeric_,(N mean std var cv median max min q1 q3);
run;
Bart
Use Maxim 4.
proc tabulate data=sashelp.class;
var _numeric_;
table _numeric_,(N mean std var cv median max min q1 q3);
run;
Bart
Beware of _numeric_ with data sets containing date, time or datetime values as many statistics won't be very useful for them.
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.