Title: | Automation and Standardization of Cleaning Clinical Lab Data |
---|---|
Description: | Navigating the shift of clinical laboratory data from primary everyday clinical use to secondary research purposes presents a significant challenge. Given the substantial time and expertise required for lab data pre-processing and cleaning and the lack of all-in-one tools tailored for this need, we developed our algorithm 'lab2clean' as an open-source R-package. 'lab2clean' package is set to automate and standardize the intricate process of cleaning clinical laboratory results. With a keen focus on improving the data quality of laboratory result values, our goal is to equip researchers with a straightforward, plug-and-play tool, making it smoother for them to unlock the true potential of clinical laboratory data in clinical research and clinical machine learning (ML) model development. Version 1.0 of the algorithm is described in detail in 'Zayed et al. (2024)' <doi:10.1186/s12911-024-02652-7>. |
Authors: | Ahmed Zayed [aut, cre] , Arne Janssens [aut, ctb], Pavlos Mamouris [ctb] |
Maintainer: | Ahmed Zayed <[email protected]> |
License: | GPL (>= 3) |
Version: | 1.0.0 |
Built: | 2024-11-09 06:30:06 UTC |
Source: | CRAN |
This function is designed to clean and standardize laboratory result values. It creates two new columns "clean_result" and "scale_type" without altering the original result values. The function is part of a comprehensive R package designed for cleaning laboratory datasets.
clean_lab_result( lab_data, raw_result, locale = "NO", report = TRUE, n_records = NA )
clean_lab_result( lab_data, raw_result, locale = "NO", report = TRUE, n_records = NA )
lab_data |
A data frame containing laboratory data. |
raw_result |
The column in |
locale |
A string representing the locale for the laboratory data. Defaults to "NO". |
report |
A report is written in the console. Defaults to "TRUE". |
n_records |
In case you are loading a grouped list of distinct results, then you can assign the n_records to the column that contains the frequency of each distinct result. Defaults to NA |
The function undergoes the following methodology:
Clear Typos: Removes typographical errors and extraneous characters.
Handle Extra Variables: Identifies and separates extra variables from result values.
Detect and Assign Scale Types: Identifies and assigns the scale type using regular expressions.
Number Formatting: Standardizes number formats based on predefined rules and locale.
Mining Text Results: Identifies common words and patterns in text results.
Internal Datasets:
The function uses an internal dataset; common_words_languages.csv
which contains common words
in various languages used for pattern identification in text result values.
A modified lab_data
data frame with additional columns:
clean_result
: Cleaned and standardized result values.
scale_type
: The scale type of result values (Quantitative, Ordinal, Nominal).
cleaning_comments
: Comments about the cleaning process for each record.
This function is part of a larger data cleaning pipeline and should be evaluated in that context. The package framework includes functions for cleaning result values and validating quantitative results for each test identifier.
Performance of the function can be affected by the size of lab_data
. Considerations for data size
or pre-processing may be needed.
Ahmed Zayed [email protected]
Function 2 for result validation,
A dataset containing data for common words.
data(common_words)
data(common_words)
A data frame with 19 rows and 9 variables.
Language: Contains 19 different languages.
Positive: Displays the word "Positive" in 19 different languages.
Negative: Displays the word "Negative" in 19 different languages.
Not_detected: Displays the phrase "Not detected" in 19 different languages.
High: Displays the word "High" in 19 different languages.
Low: Displays the word "Low" in 19 different languages.
Normal: Displays the word "Normal" in 19 different languages.
Sample: Displays the word "Sample" in 19 different languages.
Specimen: Displays the word "Specimen" in 19 different languages.
A dataset containing dummy data for demonstrating function 1 ("clean_lab_result").
data(Function_1_dummy)
data(Function_1_dummy)
A data frame with 87 rows and 2 variables.
raw_result: The raw result.
frequency: The frequency of the raw result.
A dataset containing dummy data for demonstrating function 2 ("validate_lab_result").
data(Function_2_dummy)
data(Function_2_dummy)
A data frame with 86,863 rows and 5 variables.
patient_id: Indicates the identifier of the tested patient.
lab_datetime1: Indicates the date or datetime of the laboratory test.
loinc_code: Indicates the LOINC code of the laboratory test.
result_value: Indicates the quantitative result values for validation.
result_unit: Indicates the result units in a UCUM-valid format.
A dataset containing data for the logic rules.
data(logic_rules)
data(logic_rules)
A data frame with 18 rows and 4 variables.
rule_id: The rule ID.
rule_index: The rule index.
rule_part: The rule part.
rule_part_type: The rule part type.
A dataset containing data for the reportable interval.
data(reportable_interval)
data(reportable_interval)
A data frame with 493 rows and 4 variables.
interval_loinc_code: The interval of the LOINC code.
UCUM_unit: The UCUM unit.
low_reportable_limit: The lower reportable limit.
high_reportable_limit: The higher reportable limit.
This function is designed to validate quantitative laboratory result values.
It modifies the provided lab_data
dataframe in-place, adding one new column.
validate_lab_result( lab_data, result_value, result_unit, loinc_code, patient_id, lab_datetime, report = TRUE )
validate_lab_result( lab_data, result_value, result_unit, loinc_code, patient_id, lab_datetime, report = TRUE )
lab_data |
A data frame containing laboratory data. |
result_value |
The column in |
result_unit |
The column in |
loinc_code |
The column in |
patient_id |
The column in |
lab_datetime |
The column in |
report |
A report is written in the console. Defaults to "TRUE". |
The function employs the following validation methodology:
Reportable limits check: Identifies implausible values outside reportable limits.
Logic rules check: Identifies values that contradict some predefined logic rules.
Delta limits check: Flags values with excessive change from prior results for the same test and patient.
Internal Datasets: The function uses two internal datasets included with the package:
reportable_interval
: Contains information on reportable intervals.
logic_rules
: Contains logic rules for validation.
A modified lab_data
data frame with additional columns:
flag
: specifies the flag detected in the result records that violated one or more of the validation checks
This function is a component of a broader laboratory data cleaning pipeline and should be evaluated accordingly. The package's framework includes functions for cleaning result values, validating quantitative results, standardizing unit formats, performing unit conversion, and assisting in LOINC code mapping.
Concerning performance, the function's speed might be influenced by the size of lab_data
. Consider:
Limiting the number of records processed.
Optimize the function for larger datasets.
Implement pre-processing steps to divide the dataset chronologically.
Ahmed Zayed [email protected], Arne Janssens [email protected]
Function 1 for result value cleaning,