Hi,
I have two datasets with different variables. But both datasets have a variable "sequence number" to represent observations. I want to know how many observations are different from each other (or how many observations are not in dataset 1 but in dataset 2). I also want to create a new dataset with variables in dataset 2.
Dataset 1:
seqn variable1 variable 2
1 3 2
3 4 2
......
dataset 2:
seqn variable3 variable 4
1 1 4
2 2 3
3 2 3
......
dataset I want:
seqn variable3 variable 4
2 2 3
......
Thank you!