Healthcare Dataset
Dummy data with Multi Category Classification Problem
@kaggle.prasad22_healthcare_dataset
Dummy data with Multi Category Classification Problem
@kaggle.prasad22_healthcare_dataset
Context:This synthetic healthcare dataset has been created to serve as a valuable resource for data science, machine learning, and data analysis enthusiasts. It is designed to mimic real-world healthcare data, enabling users to practice, develop, and showcase their data manipulation and analysis skills in the context of the healthcare industry.
Inspiration:The inspiration behind this dataset is rooted in the need for practical and diverse healthcare data for educational and research purposes. Healthcare data is often sensitive and subject to privacy regulations, making it challenging to access for learning and experimentation. To address this gap, I have leveraged Python's Faker library to generate a dataset that mirrors the structure and attributes commonly found in healthcare records. By providing this synthetic data, I hope to foster innovation, learning, and knowledge sharing in the healthcare analytics domain.
Dataset Information:Each column provides specific information about the patient, their admission, and the healthcare services provided, making this dataset suitable for various data analysis and modeling tasks in the healthcare domain. Here's a brief explanation of each column in the dataset -
Usage Scenarios:This dataset can be utilized for a wide range of purposes, including:
Acknowledgments:Image Credit:Image by BC Y from Pixabay
CREATE TABLE healthcare_dataset (
"name" VARCHAR,
"age" BIGINT,
"gender" VARCHAR,
"blood_type" VARCHAR,
"medical_condition" VARCHAR,
"date_of_admission" TIMESTAMP,
"doctor" VARCHAR,
"hospital" VARCHAR,
"insurance_provider" VARCHAR,
"billing_amount" DOUBLE,
"room_number" BIGINT,
"admission_type" VARCHAR,
"discharge_date" TIMESTAMP,
"medication" VARCHAR,
"test_results" VARCHAR
);Anyone who has the link will be able to view this.