Ive have encountered a problem that I just cannot seem to solve...
I have a two datasets, one with 10 observations and one with 5 observations. The one with 5 observations contains a variable of unique integers bounded on the interval [1,10]. I want to merge the two datasets in a way that the value of each integer will match with the corresponding observation number. For example, consider the values 2 4 6 8 10. I want the two datasets merged in a way that the resulting dataset will contain the integers in the following way:
OBS Integer
1 .
2 2
3 .
4 4
5 .
6 6
7 .
8 8
9 .
10 10
Does anybody have any suggestions? I am very appreciative of any help that you can provide me.
I have a two datasets, one with 10 observations and one with 5 observations. The one with 5 observations contains a variable of unique integers bounded on the interval [1,10]. I want to merge the two datasets in a way that the value of each integer will match with the corresponding observation number. For example, consider the values 2 4 6 8 10. I want the two datasets merged in a way that the resulting dataset will contain the integers in the following way:
OBS Integer
1 .
2 2
3 .
4 4
5 .
6 6
7 .
8 8
9 .
10 10
Does anybody have any suggestions? I am very appreciative of any help that you can provide me.