BookmarkSubscribeRSS Feed
cjmcgath_verizon_net
Calcite | Level 5

When I create an output data set in PROC TABULATE, the column heading includes the statistic for each variable.  For instance, the summed FEED variable is labeled "FEED_Sum".  Can I suppress the "Sum"?

2 REPLIES 2
ballardw
Super User

You could rename the variable(s) (data set option on the next step that uses the data OR proc datasets) but if you are asking for 2 or more statistics for the same variable then what? You can't rename Feed_Sum and Feed_N to the same thing.

It may be that you could do a similar summary with Proc means/summary as then a single statistic could retain the original variable name.

Reeza
Super User

Yes. It helps if you post your code but something like the following. Note that it is =with single or double quotes that are empty which erases the label.  You can also add in a custom label if you wanted.

proc tabulate data=sashelp.cars;

class make model;

var mpg_city mpg_highway;

table make*model, mpg_city*mean='' mpg_highway*mean='';

run;

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1585 views
  • 6 likes
  • 3 in conversation