Hello!
I need help on matchit package.
I am currently trying to match two dataset by bank names, I don't have and id to match, so I just generate row sequence number seq1 and seq2
Here is my two datasets, they were both cleaned and no duplicates
set1 variables: seller seq1
set2 variables: name1 seq2
I use the following code:
use set1, clear
matchit seq1 seller using set2.dta, idu(seq2) txtu(name1) di sim(bigram) w(log) t(0) override
gsort - similscore
But the matching result is so bad. I checked both datasets and sure that there could be a better match. Thanks!

I need help on matchit package.
I am currently trying to match two dataset by bank names, I don't have and id to match, so I just generate row sequence number seq1 and seq2
Here is my two datasets, they were both cleaned and no duplicates
set1 variables: seller seq1
set2 variables: name1 seq2
I use the following code:
use set1, clear
matchit seq1 seller using set2.dta, idu(seq2) txtu(name1) di sim(bigram) w(log) t(0) override
gsort - similscore
But the matching result is so bad. I checked both datasets and sure that there could be a better match. Thanks!
Comment