SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
kaushik_patra
Obsidian | Level 7

Hi everyone,

I would like to generate all possible combinations of three variables each with values 0 or 1 e.g. following using a data step

000

001

010

100

011

101

110

111

 

what will be a good way to do it?

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

So maybe something like this.

data want;
  array p[2] _temporary_ (0 1);
  array x[3];
  do _n_=0 to dim(p)**dim(x)-1;
     do i=1 to dim(x);
       x(i)=p(1+mod(int(_n_/(dim(p)**(i-1))),dim(p))) ;
     end;
     output;
  end;
  drop i ;
run;

View solution in original post

12 REPLIES 12
ChrisHemedinger
Community Manager

Check out the ALLCOMB function in SAS.  Designed just for such a thing!

Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!
kaushik_patra
Obsidian | Level 7

Thanks, it's a nice function. But the problem is I have n=2 (0 or 1) but k=3 which doesn't work for ALLCOMB.

ballardw
Super User

A not terribly bright solution

data _null_;
    do i='0','1';
      do j='0','1';
         do k='0','1';
            comb=cats(i,j,k);
            put comb=;
         end;
      end;
   end;
run;
kaushik_patra
Obsidian | Level 7
Thanks. The need is to have three distinct columns rather than a single column with all possible combinations.
Astounding
PROC Star

These combinations are just a sequence of binary numbers.  You don't need any data to do that:

 

data want;

do i=0 to 7;

   result = put(i, binary3.);

   output;

end;

drop i;

run;

kaushik_patra
Obsidian | Level 7

Thanks, this is a nice little trick. I will have to have 3 different columns for all combinations of 0 or 1. 

Tom
Super User Tom
Super User

For three it is simple.

data want;
  do a=0,1; do b=0,1; do c=0,1;
    output;
  end; end; end;
run;
kaushik_patra
Obsidian | Level 7
Great! This has promise. If I have two arrays
P = (0 1) and x = (x1 x2 x3) where each of x takes values 0 or 1, how would you do it?

Tom
Super User Tom
Super User

Not sure what you are talking about at this point.  If you have four variables named P, X1 , X2, and X3 then you could build all combinations using similar DO loops.  If you have two tables and want to join them to produce all possible combinations then PROC SQL does a good job.

proc sql ;
  create table want as
  select *
  from P, X
  ;
quit;

 

If you really have two vectors and what to manipulate them then use PROC IML. You can do lots of matrix manipulation using a language designed to work with matrices.

kaushik_patra
Obsidian | Level 7
Thanks, I have the following data -
Data a;
Array p[2] (0 1);
Array x[3];
I would like the data step operations to produce 8 rows with the unique combinations.
Tom
Super User Tom
Super User

So maybe something like this.

data want;
  array p[2] _temporary_ (0 1);
  array x[3];
  do _n_=0 to dim(p)**dim(x)-1;
     do i=1 to dim(x);
       x(i)=p(1+mod(int(_n_/(dim(p)**(i-1))),dim(p))) ;
     end;
     output;
  end;
  drop i ;
run;
kaushik_patra
Obsidian | Level 7
This is cool. I have devised a similar solution (but less technical) based on Astounding's proposal.

data a;

array p[2] _temporary_;

array x[3];

do i=1 to dim(p)**dim(x);

result = put(i, binary3.);

do j=1 to 3;

x[j]=substr(result,j,1);

end;

output;

end;

drop i j;

run;


sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

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
  • 12 replies
  • 3165 views
  • 5 likes
  • 5 in conversation