So I have one dataset with 7,503 institutions, and another with 2,768 individuals (sometimes several in the same institution).
reclink fails to match anybody when I try:
so I try matchit, based just on the single variable Institution (the school's name, all caps).
And it's sitting at 0% for two hours now. 50% CPU usage, so I know it's trying to do something, but whatever it is, is slow... I'll be happy to run it for a couple of days if I get what I want, but if it ends up failing to match stuff anyway, it will b pretty annoying. At least reclink failed fast.
reclink fails to match anybody when I try:
Code:
reclink Institution Address1 City Zip using Allinstitutions.dta, idm(id2) idu(myID) gen(matchscore) orblock(none)
Code:
. matchit id2 Institution using Allinstitutions.dta, idu(myID) txtu(Institution) override Matching current dataset with Allinstitutions.dta Loading USING file: Allinstitutions.dta Indexing USING file. Method: bigram 0%...20%...40%...60%...80%...100%. Computing results 0%...
Comment