adachankawai/healthcare-dataset
Vietnamese Healthcare Synthetic Patient Records This dataset contains synthetic Vietnamese healthcare identity records from multiple source systems, plus a canonical synthetic patient table used by the generator. All records are synthetic and are intended for entity resolution, record linkage, and Vietnamese identity-field preprocessing experiments. Included Files Only the following CSV files are included in this upload: File Rows Description… See the full description on the dataset page: https://huggingface.co/datasets/adachankawai/healthcare-dataset.
Vietnamese Healthcare Synthetic Patient Records
This dataset contains synthetic Vietnamese healthcare identity records from multiple source systems, plus a canonical synthetic patient table used by the generator.
All records are synthetic and are intended for entity resolution, record linkage, and Vietnamese identity-field preprocessing experiments.
Included Files
Only the following CSV files are included in this upload:
The six source tables contain noisy observed identity records. true_patients.csv contains the canonical synthetic patient attributes before source-specific noise is applied.
Source Table Columns
The six source-system files share the same schema:
These files intentionally use raw observed fields. Normalized fields such as phone_norm, identity_text, and name_address_text should be created during preprocessing if needed.
Canonical Patient Columns
true_patients.csv contains the canonical synthetic patient records:
Loading Examples
With pandas:
import pandas as pd
clinic = pd.read_csv("clinic_patients.csv")
hospital = pd.read_csv("hospital_patients.csv")
true_patients = pd.read_csv("true_patients.csv")After uploading to Hugging Face:
from datasets import load_dataset
repo_id = "YOUR_USERNAME/YOUR_DATASET_REPO"
clinic = load_dataset(repo_id, data_files="clinic_patients.csv")["train"]
true_patients = load_dataset(repo_id, data_files="true_patients.csv")["train"]Load all six source tables as named splits:
from datasets import load_dataset
repo_id = "YOUR_USERNAME/YOUR_DATASET_REPO"
data_files = {
"clinic": "clinic_patients.csv",
"hospital": "hospital_patients.csv",
"insurance": "insurance_members.csv",
"lab_test": "lab_test_patients.csv",
"pharmacy": "pharmacy_prescriptions.csv",
"vaccination": "vaccination_records.csv",
}
sources = load_dataset(repo_id, data_files=data_files)Intended Use
This dataset is intended for:
- record linkage across Vietnamese healthcare source systems;
- identity-field preprocessing and normalization experiments;
- synthetic data quality checks;
- development of entity resolution pipelines.
Limitations
This is a synthetic dataset and should not be used as real healthcare evidence or as a demographic sample. The data is designed for controlled technical experiments only.
