I have two datasets with different lengths and I want to combine them such that:
Amazon |
---|
a |
b |
c |
And
x |
y |
z |
Combine together to give result:
Amazon | |
---|---|
a | x |
a | y |
a | z |
b | x |
b | y |
b | z |
c | x |
c | y |
c | z |
I have two datasets with different lengths and I want to combine them such that:
Amazon |
---|
a |
b |
c |
And
x |
y |
z |
Combine together to give result:
Amazon | |
---|---|
a | x |
a | y |
a | z |
b | x |
b | y |
b | z |
c | x |
c | y |
c | z |