Being a R user, I am learning STATA now using this resources, and puzzled about the merge command.
In R, I don't have to worry about merging data wrong, because it merges everything anyway, I don't need to worry if the common columns contain any duplicates, because the Y dataframe will merge to each of the duplicated row in X dataframe. (using all=FALSE in merge)
But for STATA, I need to remove the duplicate row from X before proceeding to merge.
Is it being assumed in STATA that, in order for merge to proceed, the common column in the master table must be unique?
mmergehave been incorporated in the "official"mergecommand. – lejohn Sep 8 '11 at 8:12