Hello
I want to create 2 dimensional summary table.
What is the way to remove column with value " HORSEPOWER " and remove column with value " Mean" from output?
proc tabulate data=sashelp.cars ;
class ORIGIN TYPE ;
var HORSEPOWER;
table TYPE*HORSEPOWER*mean, ORIGIN;
run;
table TYPE*HORSEPOWER=''*mean='', ORIGIN
table TYPE*HORSEPOWER=''*mean='', ORIGIN
Thank you.
In your code solution I still see columns but they are empty.
How can I remove the columns?
proc tabulate data=sashelp.cars ;
class ORIGIN TYPE ;
var HORSEPOWER;
table TYPE*HORSEPOWER=''*mean='', ORIGIN;
run;
Hi:
change the TABLE statement
TABLE.... ORIGIN / row=float;
after ORIGIN and BEFORE the semi-colon.
Cynthia
@Ronein wrote:
Thank you.
In your code solution I still see columns but they are empty.
How can I remove the columns?
proc tabulate data=sashelp.cars ; class ORIGIN TYPE ; var HORSEPOWER; table TYPE*HORSEPOWER=''*mean='', ORIGIN; run;
Perhaps
proc tabulate data=sashelp.cars ;
class ORIGIN TYPE ;
var HORSEPOWER;
table TYPE*HORSEPOWER=''*mean='',
ORIGIN
/row=float
;
run;
but the appearance with row=float can change depending on ODS destination.
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.