Coder Social home page Coder Social logo

fastlink.jl's Introduction

FastLink.jl

Fast Probabilistic Record Linkage for the Julia Language

What is FastLink.jl

The purpose of FastLink.jl is to bring a fast record linkage package to the julia language. When attempting to match large datasets using existing libraries in R and Python, I found they can be very slow and succumb to issues with memory pressure. This implementation of the fastlink algorithm is intended to scale effeciently in parallel and be able to easily handle matches between tabular data that span millions of rows.

Run tests


Using the fastLink function

The basic arguments for the fastLink function to run are

  • dfA: A DataFrame table of records to be matched.

  • dfB: A DataFrame table of records to be matched.

  • config: A Dict{String, Any} that specifies how the two dataframes ought to be matched.

Match Configurations

The match configuration for a FastLink match needs to contain certain in the base dictionary (nested dictionaries will be discussed later).

The Base Dictionary needs to contain:

  • link_type: Either link_only, dedupe_only, or link_and_dedupe.

  • idvar: A Vector{String} of length 2 that specifies the ids of the two dataframes (in [dfA, dfB] order).

  • comparisons: a Dict{String, Any} a that defines the type of matching to be done and the variables that will be matched.

Comparisons dictionary

The comparison dictionary defined above can be located in the base Dictionary or can be substituted instead of a varname dictionary in the variables vector. The effect of nesting the comparisons in the variables vector will lead it to be matched first using the fastlink algorithm and then treated as a single variables in the parent comparisons dictionary. You can substitute multiple varnames for comparisons at the same level of nestedness.

Each comparisons dictionary much have:

  • name: should be "total" in the base dictionary and then can be any name for the nested dictionaries.

  • variables: a Vector{Dict{String, Any}} that contains the individual variable dictionaries and/or a comparisons dictionaries.

The optional parameters for the comparisons dictionary are:

  • w_lambda::Float64: Default 0.0.

  • prior_lambda::Float64: Default 0.0.

  • threshold_match: Lower bound for the posterior probability that will act as a cutoff for matches. Default [0.85].

  • tol_em: Convergence tolerance for the EM Algorithm. (default 1e-05)

  • prior_pi::Float64: Default 0.0.

  • w_pi::Float64: Default 0.0.

Variables

Individual variables can be declared in a dictionary and must contain both a varname and method.

  • varname: name of the variable in dfA and dfB to be compared.

  • method: the method to match the variable. The current accepted methods are (exact, fuzzy, string, numeric, float, int any of the distmethod options).

Methods

Each method has a number of arguments that can be specified for that matching method.

fuzzy

string

numeric

  • term_freq_adjustment: A Bool that determines whether you want the term frequencies for each comparision for a given variable. Note: does not adjust match weight.

  • tf_adjustment_weight: how much to weight on the term_freq_adjustment vs the predicted match value.

  • tf_minimum_u_value: minimum term frequency value to adjust by.

  • partial: A Bool that specifies whether you want to do 2 (true) or 1 (false) comparison levels for a given variable. Default value true.

  • upper_case: A Bool that specifies whether a strings column value is upper or lower (only if method=true. Default value is true.

  • stringdist_method: A String that specifies the desired string distance method ("jw" Jaro-Winkler (Default), "dl" Damerau-Levenshtein, "jaro" Jaro, "lv" Levenshtein, and "ham" Hamming). Default "jw".

  • cut_a: A Float that specifies the first lower bound for string distance cutoff for each comparison. Default 0.92.

  • cut_b: A Float that specifies the second lower bound for string distance (if varnames in partial) for each comparison. Default 0.88.

  • w: A Float that specifies the Winkler weight for jw string distance for each comparison. Default 0.1.

Example FastLink configuration with 1 embedded comparisons dictionary

{
    "link_type": "link_only",
    "idvar": ["id", "id2"],
    "comparisons": {
        "name": "total",
        "prior_lambda": 0.000001,
        "w_lambda": 0.5,
        "threshold_match": 0.88,
        "variables": [
            {"varname": "firstname", "method": "fuzzy", "partial": true, "cut_a": 0.92, "cut_b": 0.88, "upper": true, "tf_adjust": true, "w": 0.1},
            {"varname": "middlename", "method": "exact"},
            {"varname": "lastname", "method": "jarowinkler", "tf_adjust": true},
            {"varname": "birthyear", "method": "exact"},
            {
                "comparisons": {
                    "name": "address",
                    "threshold_match": 0.92,
                    "variables": [
                        {"varname": "housenum", "method": "exact", "tf_adjust": true},
                        {"varname": "streetname", "method": "jarowinkler", "w": 0.1, "tf_adjust": true, "tf_adjustment_weight":0.25, "tf_minimum_u_value": 0.001},
                        {"varname": "city", "method": "jarowinkler", "tf_adjustment_weight":0.15, "tf_adjust": true}
                    ]
                }
            }
        ]
    }
}

fastLink's output

A NamedTuple with these vars:

  • indices - a vector with indices in dfA and dfB that are in each pattern group (see patterns_w or patterns_b)

  • matched_ids - same as indices but using idvars from input parameters

  • iter_converge - number of iterations for expectation maximization algorithm to converge.

  • obs_a - observations in dfA

  • obs_b - observations in dfB

  • p_m - posterior match probability

  • p_u - posterior not match probability

  • patterns_w - a DataFrame of:

    • gamma_ - An Int64 with the gamma values for each variable (similar to patterns_b)
    • counts - An Int64 with counts for each agreement pattern
    • weights - An Int64 with partial match weights for each agreement pattern
    • p_gamma_jm - A Float64 that has the posterior probability that a pair matches for each agreement pattern
    • p_gamma_ju - A Float64 that has the posterior probability that a pair does not match for each agreement pattern
    • is_match - A Bool that specifies whether the given pattern is above the input parameter threshold_match
  • patterns_b - vector of all patterns observed. each pattern as a scored number for each variable (0 nonmatch, 1 partial, 2 exact, 3 missing)

  • pgamma_km - A Vector{Vector{Float64}} with posterior probababilities for each variable in the EM algorithm. Ordered (0,1,2).

  • pgamma_ku - A Vector{Vector{Float64}} with posterior probababilities for each variable in the EM algorithm. Ordered (2,1,0).

  • tf_adj_table - A Vector{DataFrame} that has a DataFrame for each match pattern and a row in each DataFrame for each comparison appended with the letter of their corresponding dataset.

  • varnames - A Vector{String} of the input variable names

  • zeta_j - A Vector{Float64} with the posterior match probabilities for each agreement pattern.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.