Hi,
I am trying to fuzzy match 2 datasets 2 name only. I do not have a number ID to match the 2 database. I have been trying to use "matchit". The results I'm currenlty getting are not convincing. Is there any ways to use this SSC without "ID1", which is the number ID?
Here is the code I have been running:
I have created 1 unique number per name in each dataset. They do not have anything in common which is why I do not want to use them
here is how the 2 dataset look like:
I am just trying to fuzzy match the 2 dataset by mgrname and Name. Can anyone help? Thanks!
I am trying to fuzzy match 2 datasets 2 name only. I do not have a number ID to match the 2 database. I have been trying to use "matchit". The results I'm currenlty getting are not convincing. Is there any ways to use this SSC without "ID1", which is the number ID?
Here is the code I have been running:
I have created 1 unique number per name in each dataset. They do not have anything in common which is why I do not want to use them
Code:
matchit mgrno mgrname using HFnames_MorningStar1.dta, idu(obs1) txtu(Name) sim(token) t(0) override
I am just trying to fuzzy match the 2 dataset by mgrname and Name. Can anyone help? Thanks!
Comment