Probabilistic-Record-Linkage-MatLab

A probabilistic approach to record linkage using Fellegi-Sunter framework with difference matrix .
8 Downloads
Aktualisiert 4. Jul 2019

A probabilistic approach to record linkage using Fellegi-Sunter framework using MatLab . It can be used with any versions of MatLab . Functions are :

readfile % Read any two data file to be linked.

caldiffmatrix(a3,b3); %Calculate difference matrix, the difference of each row of a %datafile from another.
calcofu(a3,b3); %Calculation of U-Probability using frequency of data.
calcweight(A,us); % Calculating weight of each filed using M and U- Probability , %assuming M = 0.99
calcsumofweight(weight); %Calculate weight summation for every linked pair .

Example :
b3 = readfile('b3.csv');
a3 = readfile('a3.csv');
A = caldiffmatrix(a3,b3);
us = calcofu(a3,b3);
weight = calcweight(A,us);
sum = calcsumofweight(weight);

Zitieren als

Arindam Kumar Paul (2024). Probabilistic-Record-Linkage-MatLab (https://github.com/arindampaulripon/Probabilistic-Record-Linkage-MatLab), GitHub. Abgerufen.

Kompatibilität der MATLAB-Version
Erstellt mit R2018a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Versionen, die den GitHub-Standardzweig verwenden, können nicht heruntergeladen werden

Version Veröffentlicht Versionshinweise
1.0.0

Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.
Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.