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

Hi, everyone

I like to use proc tabulate to produce a table with multiple classes (to be Concatenated ) and variables, the code is fairly simple as 

 

Proc tabulate data=test;

class C1 C2 C3

var Va Vb Vc;

table C1 C2 C3, Va Vb Vc;

run;

 

However, the Tabulate procedure excludes all missing values in any classes (C1 C2 or C3). Is there a way to exclude only the relevant missing value in individual Class table (eg, only missing C1 values are excluded from C1, Va Vb Vc table). I can only achieve the desired results by kind of duplicating the code 3 times as

 

Proc tabulate data=test;

class C1

var Va Vb Vc;

table C1 , Va Vb Vc;

run;

 

Proc tabulate data=test;

class C2

var Va Vb Vc;

table C2 , Va Vb Vc;

run;

...

...

...

 

Thanks very much for your suggestions.

1 ACCEPTED SOLUTION

Accepted Solutions
Norman21
Lapis Lazuli | Level 10

Have you considered using the MISSING option in the CLASS statement?

Norman.
SAS 9.4 (TS1M6) X64_10PRO WIN 10.0.17763 Workstation

View solution in original post

2 REPLIES 2
Norman21
Lapis Lazuli | Level 10

Have you considered using the MISSING option in the CLASS statement?

Norman.
SAS 9.4 (TS1M6) X64_10PRO WIN 10.0.17763 Workstation

dudu
Calcite | Level 5

Hi, Norman21

 

Thanks a lot!! Problem solved though I don't want the missing data to be shown in the table...but that's the way SAS works


@Norman21 wrote:

Have you considered using the MISSING option in the CLASS statement?


 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 1276 views
  • 2 likes
  • 2 in conversation