I have two datasets, one with a single row of observations and one with 10 rows of observations. I need to merge them in a way so that the single observation is repeated 10 times. Consider the following:
Dataset 1: Dataset 2:
X Y Z A1 B1 C1
A1 B2 C2
A3 B3 C3
...
A10 B10 C10
I need to merge them so that the final dataset is like this:
Data Composite:
X Y Z A1 B1 C1
X Y Z A2 B2 C2
X Y Z A3 B3 C3
...
X Y Z A10 B10 C10
Any ideas? Your help is GREATLY appreciated!
Dataset 1: Dataset 2:
X Y Z A1 B1 C1
A1 B2 C2
A3 B3 C3
...
A10 B10 C10
I need to merge them so that the final dataset is like this:
Data Composite:
X Y Z A1 B1 C1
X Y Z A2 B2 C2
X Y Z A3 B3 C3
...
X Y Z A10 B10 C10
Any ideas? Your help is GREATLY appreciated!