BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ronein
Meteorite | Level 14

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;

 

1 ACCEPTED SOLUTION

Accepted Solutions
learsaas
Quartz | Level 8
table TYPE*HORSEPOWER=''*mean='', ORIGIN

View solution in original post

4 REPLIES 4
learsaas
Quartz | Level 8
table TYPE*HORSEPOWER=''*mean='', ORIGIN
Ronein
Meteorite | Level 14

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;
Cynthia_sas
SAS Super FREQ

Hi:
change the TABLE statement
TABLE.... ORIGIN / row=float;
after ORIGIN and BEFORE the semi-colon.
Cynthia

ballardw
Super User

@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.

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 829 views
  • 1 like
  • 4 in conversation