A thin Python wrapper around the Julia module CorrectMatch.jl, to estimate uniqueness from small population samples.
Install CorrectMatch using your favorite package manager, e.g., pip:
pip install correctmatch
or uv:
uv add correctmatch
We use JuliaCall to seamlessly run Julia code from Python. The Julia binary and its dependencies, including CorrectMatch.jl, will be automatically installed on first use.
This module estimates the uniqueness of a population, on which multiple discrete attributes can be collected. For instance, the following array is a sample of 1000 rows for five discrete attributes:
>>> import numpy as np
>>> arr = np.random.randint(1, 5, size=(1000, 5))
>>> arr[:3, :]
array([[1, 1, 1, 3, 1],
[3, 3, 2, 3, 3],
[3, 3, 4, 3, 2]])We can estimate the uniqueness of a population of 1000 individuals, or 10000 individuals, from this sample:
>>> import correctmatch
>>> correctmatch.uniqueness(arr) # empirical uniqueness for 1,000 records
0.371
>>> correctmatch.correctness(arr) # empirical correctness for 1,000 records
0.637by fitting a copula model to the observed records:
>>> fitted_model = correctmatch.fit_model(arr)
>>> fitted_arr = correctmatch.sample_model(fitted_model, 1000)
>>> fitted_arr[:3, :]
array([[4, 2, 1, 4, 1],
[4, 2, 3, 2, 3],
[1, 3, 1, 3, 1]])
>>> correctmatch.uniqueness(fitted_arr)
0.373
>>> correctmatch.correctness(fitted_arr)
0.639CorrectMatch can also estimate uniqueness and correctness directly from pandas DataFrames, including those with categorical or string columns:
>>> import pandas as pd
>>> df = pd.DataFrame(arr, columns=['A', 'B', 'C', 'D', 'E'])
>>> correctmatch.uniqueness(df)
0.371>>> df_cat = pd.DataFrame({
... 'color': pd.Categorical(['red', 'blue', 'green', 'red', 'blue']),
... 'size': pd.Categorical(['S', 'M', 'L', 'S', 'S'])
... })
>>> correctmatch.uniqueness(df_cat)
0.6Beyond population-level metrics, CorrectMatch can estimate the uniqueness and correctness of a specific individual given a fitted model in, say, a population of 1000 records:
>>> model = correctmatch.fit_model(arr)
>>> individual = arr[0] # or df.iloc[0] for DataFrames
>>> correctmatch.individual_uniqueness(model, individual, 1000)
0.39545972037740124
>>> correctmatch.individual_correctness(model, individual, 1000)
0.652110111566283These functions estimate how likely a specific record is to be unique or correctly re-identified in a population.
In the demo/ folder, we have compiled more examples with real-world datasets.
GNU General Public License v3.0
See LICENSE to see the full text.
Patent-pending code. Additional support and details are available for commercial uses.