BookmarkSubscribeRSS Feed
zetter
Calcite | Level 5

Hi, I have got this tabulation below but the final table appears with 'N' on each column. How do I remove the N's? Thanks. proc format ; value test 1-9='1-9' 10-20='10-20' 21-100='Over20' ; run; data have; input studentid          studentbehaviour  $      visits; newvisit=put(visits,test.); cards; 110                          good                            2 111                          good                            15 113                          bad                            10 114                          bad                              1 115                          nice                            2 116                          nice                            24 117                          good                            6 119                          bad                            3 ; run; proc tabulate data=have ; class studentbehaviour newvisit; table studentbehaviour,newvisit; run;

3 REPLIES 3
shivas
Pyrite | Level 9

Hi,

Try this..

proc tabulate data=have ;

class studentbehaviour newvisit;

table studentbehaviour,newvisit*n=''; run;

Thanks,

Shiva

zetter
Calcite | Level 5

To be precise, my tabulation statement looks like this,

proc tabulate data =have;

class studentbehaviour newvisit;

table studentbehaviour  =' ' all,     

       newvisit ='These are new visits' all

         /box= 'Type of student behaviour' misstext='0';   

run;

Stikll cant remove the the N's

ballardw
Super User

You are not explicitly selecting a statistic. Since you are useing only class variables that generates a default statistic of N.

Shivas' response was correct in that if you explicitly ask for the N statistic then using the form *N='' (no space between quotes) will turn off the label of n.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1012 views
  • 0 likes
  • 3 in conversation