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;
yabwon_0-1771323671300.png
Bart
Use Maxim 4.
proc tabulate data=sashelp.class;
var _numeric_;
table _numeric_,(N mean std var cv median max min q1 q3);
run;
yabwon_0-1771323671300.png
Bart
Beware of _numeric_ with data sets containing date, time or datetime values as many statistics won't be very useful for them.
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.