I have a dataset which matches romantic partners in the following way:
Code:
clear set obs 6 input id partner 26 83 27 72 28 53 83 26 72 27 53 28 .
I need to be able to create unique couple identifiers. The following method:
Code:
egen coupid = group(id partner)
Does anyone know how to solve this problem?
Fabio
0 Response to Matched pair identifier
Post a Comment