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

according to the following code

Data t;

INPUT  x        y;

cards;

0       1

0       1

0       0

0       0

;

Proc freq data=t ;

Table x*y/nopercent norow;

Run;         

then i will get a results

Table of x by y

    x y

    0 1

0  2 2       

However, if i want to get the result containing the zero number of x of 1 although it is not appear in my data set like this

Table of x by y

    x y

    0 1

0  2 2      

1  0 0

how can i do?

i try the order statement for proc freq, but i still cannot get the result i want.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

proc freq can't do that. Try proc tabulate.

Code: Program

Data t;
INPUT  x   y;
cards;
0 1
0 1
0 0
0 0
;
run;
data classdata;
do x=0,1;
  do y=0,1;
   output;
  end;
end;
run;
proc tabulate data=t classdata=classdata ;
class x y;
table x,y /misstext='0' ;
keylabel n=' ';
run;  

View solution in original post

3 REPLIES 3
Ksharp
Super User

proc freq can't do that. Try proc tabulate.

Code: Program

Data t;
INPUT  x   y;
cards;
0 1
0 1
0 0
0 0
;
run;
data classdata;
do x=0,1;
  do y=0,1;
   output;
  end;
end;
run;
proc tabulate data=t classdata=classdata ;
class x y;
table x,y /misstext='0' ;
keylabel n=' ';
run;  
ffgsdf
Fluorite | Level 6

very useful. thx.

Ksharp
Super User

Sorry. As the matter of fact , PROC FREQ can do that.

Code: Program

Data t;
INPUT  x   y;
cards;
0 1
0 1
0 0
0 0
;
run;
data temp;
do x=0,1;
  do y=0,1;
   output;
  end;
end;
run;

data want;
set t(in=ina) temp;
w=ina;
run;
proc freq data=want;
table x*y /nocol norow nopercent;
weight w /zeros;
run;

x.png

Xia Keshan

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 3 replies
  • 968 views
  • 1 like
  • 2 in conversation