Abstract
Data linkage refers to the process of identifying and linking records that refer to the same entity across multiple heterogeneous data sources. This method has been widely utilized across scientific domains, including public health where records from clinical, administrative, and other surveillance databases are aggregated and used for research, decision making, and assessment of public policies. When a common set of unique identifiers does not exist across sources, probabilistic linkage approaches are used to link records using a combination of attributes. These methods require a careful choice of comparison attributes as well as similarity metrics and cutoff values to decide if a given pair of records matches or not and for assessing the accuracy of the results. In large, complex datasets, linking and assessing accuracy can be challenging due to the volume and complexity of the data, the absence of a gold standard, and the challenges associated with manually reviewing a very large number of record matches. In this paper, we present AtyImo, a hybrid probabilistic linkage tool optimized for high accuracy and scalability in massive data sets. We describe the implementation details around anonymization, blocking, deterministic and probabilistic linkage, and accuracy assessment. We present results from linking a large population-based cohort of 114 million individuals in Brazil to public health and administrative databases for research. In controlled and real scenarios, we observed high accuracy of results: 93%-97% true matches. In terms of scalability, we present AtyImo’s ability to link the entire cohort in less than nine days using Spark and scaling up to 20 million records in less than 12s over heterogeneous (CPU+GPU) architectures.
Index Terms: Data linkage, accuracy assessment, cohort study
I. Introduction
DATA linkage is a widely adopted technique for combining data from disparate heterogeneous sources potentially belonging to the same entity [1], [2]. It has been applied in several domains to aggregate data to be used in decision-making processes, monitoring and surveillance tasks, assessment of public policies, and clinical research [3], [4].
In the context of public health, we linked data from a very large socioeconomic cohort consisting of 114 million individuals who have received payments from a conditional cash transfer program in Brazil between 2007 and 2015 to records from public health databases. We generated bespoke data sets for research studies aiming to quantify and evaluate the impact of such payments on several disease outcomes.
Besides data volume, the complexity of our scenario comes from the absence of common key attributes in all databases involved. This imposes the use of probabilistic approaches which, in turn, have a strong requirement on accuracy. Another challenging issue is the lack of gold standards to validate these linkages, as the amount of cohort participants appearing in any health database is unknown.
This is an extended version of our award-winning poster presented at IEEE Biomedical and Health Informatics 2017 [5]. In this paper, we present our data linkage tool (AtyImo) and its pipeline structure for anonymization, block construction, and pairwise comparison. AtyImo implements a mixture of deterministic and probabilistic routines for data linkage. We discuss and evaluate accuracy, scalability, and performance results achieved in experimental and real scenarios.
This paper is organized as follows: Section II presents some related work on data linkage tools and accuracy assessment issues. Section III presents the AtyImo tool and describes its functionalities. We provide a summary of our case study in Section IV. Different accuracy and scalability results are presented and discussed in Section V, and some conclusions and ideas for further research are presented in Section VI.
II. Related Work
Data linkage is implemented in vendor-specific databases and analytics platforms, statistical software, and research-centered solutions. In this section, we list some existing tools relying on some form of block construction and probabilistic technique to enable data linkage. Additionally, we discuss the accuracy assessment process and its associated challenges.
A. Data Linkage Tools
Reclink [6] provides different matching and block construction routines to support data linkage. Phonetic codes are applied over linkage attributes to generate candidate blocks for pairwise comparison. It was used in some ecological and small-size (nearly 5.700 individuals) cohort-based studies using Brazilian governmental data, such as [7] and [8].
Merge Toolbox [9] is offered by the German Record Linkage Center together with other tools for privacy-preserving matching (Safelink) and error imputation for accuracy validation (TD-Gen). FRIL [10] offers an interactive linkage process allowing users to select comparison attributes, a similarity function, and a decision model to accept or reject matched records. Febrl [11] is an open-source tool with a graphical interface that allows the combination of different encoding, indexing, comparison, and classification functions.
HARRA [12] and NC-Link [13] are proposals focused on machine learning techniques to perform record classification of large-scale data sets. Machine learning-driven approaches are also used in [14] to classify clusters of records generated by the MFIBlocks algorithm for uncertain multientity resolution, as well in [15] for classifying online customer profiling data. Different metablocking algorithms to entity resolution are discussed in [16], with emphasis on load balancing, graph (block) construction, and entity comparison.
A data mining platform targeting health care data is presented in [17]. It employs Apache Drill to support schemaless access to diverse data sources. The authors claim that this platform shortens the time needed to make data available for analysis when compared to other existing tools, presenting runtime performance results for join and distinct queries.
In [18], parallel data linkage algorithms and performance results obtained with data sets scaled up to 6 million records are discussed. Further, in [19], a Web-based version of these algorithms is compared against Febrl and FRIL. Privacy-preserving linkage methods implemented in OpenCL are discussed in [20], with emphasis on block construction and similarity calculation. Different blocking and clustering techniques to scale record linkage methods are discussed in [21]. Hybrid architectures were used in [22] to evaluate linkage performance over NVIDIA and OpenCL, resulting on a speedup of ten times for a 1.7 million data set from freedb.org.
B. Accuracy of Data Linkage
Common approaches for accuracy assessment comprise of the following:
the usage of “gold standards” (when true match status is known);
sensitivity analysis based on different linkage criteria;
comparison between linked and nonlinked records; and
statistical techniques dealing with uncertainty and bias measurement [23].
The entire scope of this topic also comprises proposals dealing with data quality and preparation, multiple imputation problems, bias and uncertainty quantification, as well scalability modeling [24].
When gold standards are absent, one must rely on controlled experiments with small size databases from which we can perform a manual review on linked records to quantify the accuracy and then scale to bigger databases. Accuracy can be measured through sensitivity, specificity, positive predictive value (PPV), and receiver operating characteristic (ROC) curves, as discussed in [25]–[27].
An alternative approach to assessing the accuracy is to utilize machine learning techniques for automating the process of tuning the linkage hyperparameters and reduce or eliminate the amount of human intervention. This approach is discussed in [28] and delivers highly accurate results from unsupervised methods as compared to existing gold standards. In [29], a discussion is provided on the manner that artificial neural networks and clustering algorithms can be used to deal with missing data and produce accurate results.
Our work contributes to the field by providing a scalable tool capable of linking very large databases with complex relationships and great variability in terms of data quality. Other contributions arise from the discussion on metrics for accuracy assessment, reference cutoff values and establishment of gold standards for probabilistic linkage.
III. AtyImo Data Linkage Tool
We initially developed AtyImo in 2013 to serve as a linkage tool supporting a joint Brazil–U.K. project aiming at building a large population-based cohort with data from more than 100 million participants and producing disease-specific data to facilitate diverse epidemiological research studies. The volume and heterogeneity of the databases involved, as well the absence of common key attributes among them and the expected cohort size (initially 80 million records) have posed strong requirements on scalability and accuracy. To address these challenges, we designed and implemented AtyImo as a modular pipeline, encapsulating components for data preprocessing, pairwise comparison, and matching decision.
Prior to linkage, all input data sets pass through a data quality analysis stage which performs data integrity and missingness checks, which quantify the percentage of missing data especially from linkage attributes. Any required procedures for data cleansing are also applied in this stage. The goals are to identify the suitability of linkage attributes (given missing data statistics) and recover records presenting some imputation errors that can be fixed through standardization procedures. The processes have been implemented using a variety of statistical analysis tools such as Stata and R.
A. Data Preprocessing
This stage is responsible for data harmonization, blocking, and anonymization. Common operations for data harmonization comprise date and string formatting, removal of special characters, and insertion of specific values for missing data.
Blocking [23] is a common approach used in data linkage that consists of grouping candidate pairs with similar characteristics to be subsequently compared. It reduces the execution time, as only similar blocks (and not all existing ones) are compared at a time. Blocking additionally helps to overcome space (memory) limitations when dealing with large databases.
Different techniques can be used for blocking: single key, predicates or machine learning-driven methods. Single key blocking is simpler, as only one attribute is used to group records, but errors in this key attribute can prevent a given record to be inserted into a block, thus resisting comparison with potential pairs. A refined approach consists of combining several key attributes into a disjunctive predicate used to correctly block records even if some of these attributes have errors. Finally, classification algorithms can use specific rules to learn how effectively and accurately construct blocks.
Fig. 1 shows the predicate-based blocking strategy used in AtyImo. After analyzing different predicates, we have chosen the following one: (name AND mother_name AND mu-nicipality_code) OR (surname AND mother_surname AND year_of_birth). It guarantees that errors in one clause do not prevent the record to be correctly grouped, resulting in a relatively small number of blocks of moderate sizes.
Anonymization is a critical issue for health data and different privacy-preserving techniques can be used to address this problem [30]–[32]. AtyImo uses Bloom filters [33], which are binary vectors of size n initialized with 0 (zero). Linkage attributes being anonymized are decomposed in “bigrams” (pairs of characters, including spaces) processed by hash functions to determine which positions in the filter must change to 1, as depicted in Fig. 2. The amount of positions depends on each attribute’s weight. Bloom filters are very reliable as two identical set of attributes will always generate the same vector [no false positives (FPs)]. After evaluating different configurations, we defined a 180-bit filter built from two hash functions and the following attributes (and weights): name and mother_name (50 bits each), date_of_birth (40 bits), municipality_code, and gender (20 bits each).
B. Pairwise Comparison Methods
AtyImo provides two approaches for pairwise comparison. The first one is full probabilistic, in which Bloom filters representing linkage attributes are entirely compared (see Fig. 3). A similarity value is calculated based on the Sørensen–Dice index [34], defined as Dice = (2 * h)/(a + 6), being h the total of 1’s at the same positions in both filters, and a and b the total of 1’s in the first and second filters, respectively. A Dice = 1 means filters are completely equal, decreasing to 0 (zero) depending on existing differences. Our implementation normalizes Dice indices between 0 and 10.000.
The second approach is a hybrid mixture of deterministic and probabilistic rules applied to individual linkage attributes (see Fig. 4). Categorical attributes are matched exactly, whereas names and dates (both more prone and sensitive to errors) are probabilistically classified as: exact (Dice = 10 000), strong (10 000 > Dice >= 9000), weak (9000 > Dice >= 8000), and unpaired (8000 > Dice). This approach results in some flexibility on the combinations of exact and approximate comparisons.
These methods produce three output data sets: true positive (TP) pairs, true negative (TN) pairs, and “dubious records” (FP and false negative (FN) matches). This classification is based on upper and lower cutoff points representing boundaries for TP and TN matches, respectively. We perform an analysis on which cutoff points retrieve more true (positive and negative) pairs and perform an iterative second round over dubious pairs, shifting these points in each iteration, to retrieve additional records into these two groups.
C. Accuracy Assessment
Resulting data sets produced by AtyImo are evaluated based on sensitivity, specificity, and PPV. We perform a manual review over samples with an incremental size from controlled databases (known coexistence of matching records) used as gold standards. This process allows us to quantify AtyImo’s accuracy, especially with regards to the choice of cutoff points that minimize the amount of false pairs. Additionally, it enables our approach to scale up to bigger databases (as in our case study), where a manual review is impossible or impractical.
Current Dice indices used as upper and lower cutoff points are 9.400 and 8.800, respectively. We chose the cutoff points after several iterative tests with different samples of variable size and data quality extracted from different databases. These tests aimed to check the variation on indices providing better results and the possibility of using the same values for all linkage executions. Table I summarizes one of our results obtained with four cohort samples linked to hospital episodes (SIH) and disease notification (SINAN) databases. We observed Dice values providing a better accuracy varying between 9.100 and 9.400, which highlights the challenges of trying to establish a default value.
Table I.
Samples | SIH | SINAN | ||||
---|---|---|---|---|---|---|
Dice | Sens. | PPV | Dice | Sens. | PPV | |
SE | 9400 | 95.6% | 95.0% | 9300 | 96.7% | 95.9% |
SC | 9100 | 99.0% | 96.0% | 9100 | 97.7% | 97.4% |
BA | 9100 | 98.5% | 97.9% | 9200 | 95.7% | 95.5% |
RO | 9300 | 94.1% | 94.2% | 9400 | 87.9% | 91.0% |
We have started testing machine learning methods to design an automated accuracy checker and automatically retrieve dubious records. As we need to scale up to 114 million records, we expect this approach to help us in eliminating the need for a manual review and to efficiently deal with the variability of Dice values. Some preliminary results are discussed in [35].
IV. Case Study: The 114 Million Cohort
The Brazilian 114 million cohort [36] is a joint Brazil–U.K. effort started in 2013 with the aim of building a population-based cohort to enable diverse research studies on disease epidemiology and surveillance. The cohort was constructed based on data from CadastroÚnico (CADU database), a central register for individuals intending to participate in more than 20 social and protection programs kept by the Brazilian government. Bolsa Famllia (PBF database) is one of these programs and provides conditional cash transfers to families considered poor or extremely poor. So far, the cohort is comprised of 114 million individuals who have received payments from Bolsa Famflia between 2007 and 2015. This cohort is linked to public health databases to generate disease-specific data used in epidemiological studies.
Linkages between CADU and databases from social programes (including PBF) are deterministic, based on the NIS number—a unique identifier similar to a social security number. Linkages between the cohort and public health databases (the main ones are summarized in Table II) are performed probabilistically, as there are no common key identifiers across these databases. We developed AtyImo to enable us to perform these linkages in an accurate fashion.
Table II.
Databases | Coverage |
---|---|
CADU (socioeconomic data) | 2007 to 2015 |
PBF (cash benefits payments) | 2007 to 2015 |
SIH (hospitalizations) | 1998 to 2011 |
SIM (mortality) | 2000 to 2012 |
SINAN (notifiable diseases) | 2000 to 2010 |
SINASC (live births) | 2001 to 2012 |
V. Accuracy and Scalability Results
Our evaluation strategy to assess AtyImo’s accuracy and scalability was based on some small size, controlled databases (where the number of matching pairs was known), as well samples from the CADU cohort with increasing sizes and variable data quality. We calculated accuracy metrics for each case and used ROC curves to visualize which cutoff points are the best similarity threshold discriminating matching pairs. Depending on sample sizes, we additionally performed a manual review for checking the results obtained and their accuracy.
AtyImo is implemented over Spark and over heterogeneous (CPU+multi-GPU) architectures. Synthetic data sets and both implementations are publicly available.1 The Spark-based implementation is structured as nine Python modules summarized in Table III. The correlation() module is the most time-consuming as it performs pairwise comparisons, similarity calculations, and matching decisions.
Table III.
Module | Purpose |
---|---|
preprocessing.py createBlockKey.py and writeBlocks.py encondingBlocking.py correlation.py dedupByKey.py and createDatamart.py config.py and configstatic.py | Data cleansing and standardization Blocking (record grouping) |
Creation of Bloom filters Pairwise comparison and matching Generation of research datasets | |
Data and Spark configuration |
A. Accuracy in Controlled Scenarios
Table IV presents a comparative analysis linking a controlled database with positive tests for rotavirus (children treated for diarrhoea) to a database with children’s hospital admissions for all-cause diseases (including diarrhoea). The first database had 486 records, to which we added 200 additional random records as noise. The second database had 9678 records. The goals were to correctly retrieve all 486 records from the second database (simulating a controlled behavior) and compare AtyImo’s results against other tools.
Table IV.
FRIL | FRIL blocking | Febrl | Febrl blocking | AtyImo | AtyImo blocking | |
---|---|---|---|---|---|---|
TP | 486 | 484 | 480 | 479 | 486 | 486 |
TN | 0 | 0 | 0 | 0 | 0 | 0 |
FP | 1 | 0 | 1 | 0 | 0 | 0 |
FN | 0 | 2 | 6 | 7 | 0 | 0 |
We observed similar accuracy in terms of TP and TN pairs, with a slight advantage for AtyImo when considering FP and FN pairs. We used the same comparison strategy for FRIL and Febrl: attributes name and mother_name were compared through the Jaro-Winkler distance (weight = 1), date difference for date_of_birth (weight = 0.9), exact match for municipality_ code, and gender (weight = 0.8 for both). This configuration is similar to AtyImo’s hybrid approach. Blocking was based on the sorted neighborhood algorithm, which sorts records through a given key and only compares records within a predefined distance window, whereas, for AtyImo, we used the predicate described in Section III. As FRIL and Febrl have a black-box implementation, we were unable to fully explore how blocking influences the results obtained.
B. Accuracy in Uncontrolled Scenarios
While the cohort creation was taking place, we performed experiments linking isolated CADU samples (from 2007 to 2015) to health databases covering specific diseases (e.g., tuberculosis, children mortality, BCG vaccination, etc.). Table V presents linkage results for tuberculosis between the CADU 2011 (best quality sample), the hospitalizations (SIH), and the disease notifications (SINAN) databases. We used samples from two Brazilian states: Sergipe (SE), the smallest sample (few individuals in CADU), and Santa Catarina (SC), a middle size sample. They were chosen for manual review purposes.
Table V.
Databases (number of records) | Matched pairs | TPs (%) | ||
---|---|---|---|---|
Full | Hybrid | Full | Hybrid | |
CADU 2011 × SIH SE | 40 | 24 | 23 | 23 |
(1, 447 512) × (49) | (57.5%) | (95.8%) | ||
CADU 2011 × SIH SC | 140 | 95 | 83 | 86 |
(1 988 599) × (330) | (59.2%) | (90.5%) | ||
CADU 2011 × SINAN SE | 398 | 311 | 309 | 299 |
(1 447 512) × (624) | (77.6%) | (96.1%) | ||
CADU 2011 × SINAN SC | 661 | 500 | 551 | 462 |
(1 988 599) × (2049) | (83.3%) | (92.4%) |
The hybrid approach retrieved more TP pairs compared to the full probabilistic routine, which emphasizes that individual comparison of linkage attributes provides more accurate results less influenced by imputation errors. We made similar tests with a bigger sample (BA) and a poorest data quality sample (RO) (see Table I).
In [5], we presented the overall cutoff points providing better results when linking cohort records to different mortality (SIM) samples (RO, SE, and SC), respectively: 9.300 (sensitivity 94.3%, PPV 95.9%), 9.300 (sensitivity 97.6%, PPV 97.7%), 9.000 (sensitivity 86.6%, PPV 93.5%). We plotted ROC curves for all experiments to visually assess the power of discrimination of each coefficient, as depicted in Figs. 5 to 7. Results from the SC sample were slightly worse compared to other samples, having been influenced by expressive missing data present in 2007 to 2009 fragments.
From these experiments, we observed which Dice values provided the best results for each case and measured the distance between them to verify the suitability of using the same coefficients for all linkages. Best coefficients varied from 8.800 to 9.400, being used as thresholds to separate dubious records. This observed variation reinforces the complexity of running probabilistic linkages without gold standards.
C. Scalability Evaluation
We measured the time spent on linkage for each tool in Table IV. Average times (in seconds) for five executions were: FRIL (681), Febrl (3.780), AtyImo (103); decreasing to FRIL (37), Febrl (2.730), AtyImo (42) using blocking. Although these results were obtained with a small database, they illustrate how AtyImo performs as good as other tools. We consider AtyImo’s major advantage as its ability to scale upwards to huge databases, which we were unable to do with other tools. We linked the entire cohort to 370.000 records from SINAN in nine days using 20 nodes (40 2.8 GHz cores, 256 GB RAM) from a dedicated supercomputer. We also linked 7 million cohort records to one million records from SIM in four days using a 56-core (3.1 GHz, 512 GB RAM) server.
Considering the potential speed up of parallel architectures, we have ported AtyImo to heterogeneous (CPU+GPU) platforms aiming to simultaneously use all available processors to distribute data and tasks. We have used a static strategy to assign data and tasks over available CPU and GPU subsystems. We initialize the runtime with as many CPU threads as CUDA devices, since one CPU thread is linked to each GPU to perform memory and control operations, plus a number of CPU threads linked to each CPU core to perform multicore computation. Each group of processing elements executing a computational kernel is seen as a combined processing unit, since CPU and GPU threads work in a co-ordinated fashion.
Scalability tests were performed for the correlation function since it is the most time-consuming component within the pipeline. Files to be linked are loaded in two matrices with one line per record. We exploit parallel matrix calculation and perform summation by partitioning the outermost loop into independent, variable size chunks, which allow us to better distribute the workload. Algorithm 1 shows the parallel version of AtyImo, where cpu_exec() and kernel() correspond to CPU and GPU versions, respectively, of the correlation.py module.
Fig. 8 illustrates the execution time and speed up obtained with samples varying from 1 to 20 million records linked using one or two GPUs, as well hybrid CPU+GPU cores. Speed up was calculated based on the CPU cores subsystem. The maximum speed up was around 8 for the hybrid subsystem, with a sustained ability to scale up to 20 million records. Our platform comprised of four Intel Xeon processors (3.33 GHz, 100 GB RAM, 6 cores, and 128 MB cache each) and two Tesla C2070 GPUs (448 cores in total). We used CUDA version 7.5.
VI. Conclusion
In this paper, we described and evaluated our probabilistic linkage approach implemented by AtyImo through accuracy and scalability results achieved in controlled and uncontrolled experiments. We analyzed accuracy metrics and ROC curves to identify effective similarity indices to generate high-accurate data for epidemiological studies. The variability of best Dice indices emphasized the complexity regarding the definition of gold standards for probabilistic linkage. AtyImo has proved to be very accurate linking controlled and uncontrolled databases. Its major contribution is the ability to link huge databases within a reasonable execution time and with a good accuracy.
We are working on improvements that will enable AtyImo to operate for the entire cohort over GPU architectures and designing machine learning methods to automatic accuracy assessment. We consider a careful discussion on the quality of data linkage as essential, particularly when large databases are used and mismatches might have important consequences for statistical analyzes in terms of bias.
Footnotes
References
- [1].Doan A., Halevy A., and Ives Z., Principles of Data Integration, 1st ed. San Mateo, CA, USA: Morgan Kaufmann, 2012. [Google Scholar]
- [2].Herrett E., et al. , “Completeness and diagnostic validity of recording acute myocardial infarction events in primary care, hospital care, disease registry, and national mortality records: Cohort study,” BMJ, vol. 346, 2013, Art. no. f2350. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [3].Denaxas S. C., et al. , “Data resource profile: Cardiovascular disease research using linked bespoke studies and electronic health records (CALIBER),” Int. J. Epidemiology, vol. 41, no. 6, pp. 1625–1638, 2012. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [4].Denaxas S. C. and Morley K. I., “Big biomedical data and cardiovascular disease research: Opportunities and challenges,” Eur. Heart J. Quality Care Clin. Outcomes, vol. 1, no. 1, pp. 9–16, 2015. [DOI] [PubMed] [Google Scholar]
- [5].Pinto C., et al. , “Accuracy of probabilistic linkage: The Brazilian 100 million cohort,” in Proc. Int. Conf. BIomed. Health Informat., 2017. [Online]. Available: http://discovery.ucl.ac.uk/1542411/3/Denaxas_Barreto_BHI2017Final.pdf
- [6].Camargo K. R. D. Jr, and Coeli C. M., “Reclink: An application for database linkage implementing the probabilistic record linkage method,” Cadernos de Saúde Pública, vol. 16, pp. 439–447, 2000. [DOI] [PubMed] [Google Scholar]
- [7].Lima-Costa M. F., Rodrigues L. C., Barreto M. L., Gouveia M., and Horta B. L., “Genomic ancestry and ethnoracial self-classification based on 5,871 community-dwelling Brazilians (EPIGEN Initiative),” Nature Sci. Rep., vol. 5, no. 9812, pp. 1–7, 2015. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [8].Nery J. S., et al. , “Effect of the Brazilian conditional cash transfer and primary health care programs on the new case detection rate of leprosy,” PLOS Neglected Tropical Diseases, vol. 8, no. 11, pp. 1–7, 2014. [Online]. Available: 10.1371/journal.pntd.0003357 [DOI] [PMC free article] [PubMed] [Google Scholar]
- [9].Schnell R., Bachteler T., and Reiher J., “Privacy-preserving record linkage using Bloom filters,” BMC Med. Informat. Decision Making, vol. 9, 2009, Art. no. 41. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [10].Jurczyk P., Lu J. J., Xiong L., Cragan J. D., and Correa A., “Fril: A tool for comparative record linkage,” AMIA Annu. Symp. Proc., vol. 2008, pp. 440–444, 2008. [PMC free article] [PubMed] [Google Scholar]
- [11].Christen P., “Febrl: An open source data cleaning, deduplication and record linkage system with a graphical user interface,” in Proc. 14th Int. Conf. Knowl. Discovery Data Mining, 2008, pp. 1065–1068. [Google Scholar]
- [12].Kim H.-s. and Lee D., “Harra: Fast iterative hashed record linkage for large-scale data collections,” in Proc. 13th Int. Conf. Extending Database Technol., 2010, pp. 525–536. [Online]. Available: http://doi.acm.org/10.1145/1739041.1739104
- [13].Jeon Y., Yoo J., Lee J., and Yoon S., “Nc-link: A new linkage method for efficient hierarchical clustering of large-scale data,” IEEE Access, vol. 5, pp. 5594–5608, 2017. [Google Scholar]
- [14].Sagi T., Gal A., Barkol O., Bergman R., and Avram A., “Multi-source uncertain entity resolution at yad vashem: Transforming holocaust victim reports into people,” in Proc. Int. Conf. Manag. Data, 2016, pp. 807–819. [Online]. Available: http://doi.acm.org/10.1145/2882903.2903737
- [15].Conrad C., Ali N., Keelj V., and Gao Q., “ELM: An extended logic matching method on record linkage analysis of disparate databases for profiling data mining,” in Proc. IEEE 18th Conf. Bus. Inf., August 2016, vol. 1, pp. 1–6. [Google Scholar]
- [16].Efthymiou V., Papadakis G., Papastefanatos G., Stefanidis K., and Palpanas T., “Parallel meta-blocking for scaling entity resolution over big heterogeneous data,” Inf. Syst., vol. 65, no. Supp. C, pp. 137–157, 2017. [Online]. Available: http://www.sciencedirect.com/science/article/pii/S030643791530199X [Google Scholar]
- [17].Begoli E., Dunning T., and Frasure C., “Real-time discovery services over large, heterogeneous and complex healthcare datasets using schema-less, column-oriented methods,” in Proc. IEEE 2nd Int. Conf. Big Data Comput. Service Appl., March 2016, pp. 257–264. [Google Scholar]
- [18].Mamun A.-A., Mi T., Aseltine R., and Rajasekaran S., “Efficient sequential and parallel algorithms for record linkage,” J. Amer. Med. Informat. Assoc., vol. 21, no. 2, pp. 252–262, 2014. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [19].Mamun A.-A., Aseltine R., and Rajasekaran S., “RLT-S: A web system for record linkage,” PLOS One, vol. 10, no. 5, pp. 1–9, May 2015. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [20].Sehili Z., Kolb L., Borgs C., Schnell R., and Rahm E., “Privacy preserving record linkage with PPjoin,” in Proc. Datenbanksysteme für Business, Technologie und Web, 2015, pp. 85–104. [Google Scholar]
- [21].Rendle S. and Schmidt-Thieme L., Scaling Record Linkage to NonUniform Distributed Class Sizes. Berlin, Germany: Springer, 2008, pp. 308–319. [Google Scholar]
- [22].Forchhammer B., Papenbrock T., Stening T., Viehmeier S., and Naumann U. D. F., “Duplicate detection on GPUs,” in BTW. Bonn, Germany: Köllen-Verlag, 2013, pp. 165–184. [Google Scholar]
- [23].Harron K., Goldstein H., and Dibben C., Methodological Developments in Data Linkage, 1st ed. New York, NY, USA: Wiley, 2016. [Google Scholar]
- [24].Goldstein H., Harron K., and Cortina-Borja M., “A scaling approach to record linkage,” Statist. Med., vol. 36, no. 16, pp. 2514–2521, 2017. [Online]. Available: 10.1002/sim.7287 [DOI] [PMC free article] [PubMed] [Google Scholar]
- [25].Christen P. and Goiser K., Quality and Complexity Measures for Data Linkage and Deduplication. Berlin, Germany: Springer, 2007, pp. 127–151. [Online]. Available: 10.1007/978-3-540-44918-8_6 [DOI] [Google Scholar]
- [26].Bohensky M. A., et al. , “Data linkage: A powerful research tool with potential problems,” BMC Health Services Res., vol. 10, no. 1, December 2010, Art. no. 346 [Online]. Available: 10.1186/1472-6963-10-346 [DOI] [PMC free article] [PubMed] [Google Scholar]
- [27].Aldridge R., Shaji K., Hayward A., and Abubakar I., “Accuracy of probabilistic linkage using the enhanced matching system for public health and epidemiological studies,” PLOS One, vol. 10, no. 8, pp. 1–15, 2015. [Online]. Available: 10.1371/journal.pone.0136179 [DOI] [PMC free article] [PubMed] [Google Scholar]
- [28].Grannis S. J., Overhage J. M., Hui S., and McDonald C. J., “Analysis of a probabilistic record linkage technique without human review,” in Proc. AMIA Annu. Symp., 2003, vol. 2003, pp. 259–263. [Online]. Available: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1479910/ [PMC free article] [PubMed] [Google Scholar]
- [29].Hettiarachchi G. P., Hettiarachchi N. N., and Hettiarachchi D. S., “Next generation data classification and linkage: Role of probabilistic models and artificial intelligence,” in Proc. IEEE Global Humanitarian Technol. Conf., October 2014, pp. 569–576. [Google Scholar]
- [30].Zhou B., Pei J., and Luk W., “A brief survey on anonymization techniques for privacy preserving publishing of social network data,” SIGKDD Explor. Newsl., vol. 10, no. 2, pp. 12–22, December 2008. [Online]. Available: http://doi.acm.org/10.1145/1540276.1540279 [Google Scholar]
- [31].Gál T., Kovács G., and Kardkovács Z., “Survey on privacy preserving data mining techniques in health care databases,” Acta Universitatis Sapientiae, Informatica, vol. 6, no. 1, pp. 33–55, 2014. [Google Scholar]
- [32].Sathya S. and Sethukarasi T., “Efficient privacy preservation technique for healthcare records using big data,” in Proc. Int. Conf. Inf. Commun. Embedded Syst., February 2016, pp. 1–6. [Google Scholar]
- [33].Bloom B. H., “Space/time trade-offs in hash coding with allowable errors,” Commun. ACM, vol. 13, no. 7, pp. 422–426, July 1970. [Google Scholar]
- [34].Powers D. M. W., “Evaluation: From precision, recall and F-measure to ROC, informedness, markedness & correlation,” J. Mach. Learn. Technol., vol. 2, no. 1, pp. 37–63, 2011. [Google Scholar]
- [35].Pita R., Mendonça E., Reis S., Barreto M., and Denaxas S., “A machine learning trainable model to assess the accuracy of probabilistic record linkage,” in Big Data Analytics and Knowledge Discovery, Bellatreche L. and Chakravarthy S., Eds. Cham, Switzerland: Springer, 2017, pp. 214–227. [Google Scholar]
- [36].Rasella D., Aquino R., Santos C. A., Paes-Sousa R., and Barreto M. L., “Effect of a conditional cash transfer programme on childhood mortality: A nationwide analysis of brazilian municipalities,” Lancet, vol. 382, no. 9886, pp. 57–64, 2017. [DOI] [PubMed] [Google Scholar]