I have two categorical data sets: one with 20 rows, and one with 44 rows.
I need to make one data set which has two columns of 20 x 44 or 880 rows.
I need to keep the data in character format, so don't have to reformat anything.
I'd be embarrassed to tell you how much I've researched this, but to no avail (I have learned a lot, though).
But could use your guidance.
I'm guessing it's an array with a do loop, but am open to SQL or anything.
Appreciated in advance.
What you want is a "cartesian join", easily achieved with proc sql:
data one;
input column1 $;
datalines;
one_1
one_2
;
data two;
input column2 $;
datalines;
two_1
two_2
two_3
;
proc sql;
create table want as
select one.column1, two.column2
from one, two
;
quit;
What you want is a "cartesian join", easily achieved with proc sql:
data one;
input column1 $;
datalines;
one_1
one_2
;
data two;
input column2 $;
datalines;
two_1
two_2
two_3
;
proc sql;
create table want as
select one.column1, two.column2
from one, two
;
quit;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.