BookmarkSubscribeRSS Feed
gstover
Fluorite | Level 6

Is there a way to add a column variable in proc tabulate that is not on the raw data?

 

I have a gender categories of Female, Male and Unknown.  I would like to display the Unknown column and it is not on my raw data.

Is there a way to do this?

2 REPLIES 2
Reeza
Super User
See page 4 / Example 3 here
https://www.lexjansen.com/nesug/nesug11/cc/cc29.pdf

PRELOADFMT or COMPLETETYPES are the terms that you can google with PROC TABULATE.
ballardw
Super User

If your  "unknown" means that the variable that holds gender has the value missing then one way is to do three things assuming this is used as a Class variable:

1) on the Class statement add the MISSING option so missing is included in the report. This would look like:

Class gender / missing;

2) create a format that displays missing values as "Unknown"

3) associate the format with the variable with a format statement.

Example

proc format;
value $missgender
' ' = 'Unknown'
;
run;

data example;
   input gender $ varx;
datalines;
Female  123
Male    456
.       111
;

proc tabulate data=example;
   class gender/missing;
   format gender $missgender.;
   var varx;
   table gender,
         varx*mean
   ;
run;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register 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
  • 606 views
  • 0 likes
  • 3 in conversation