Healthcare Appointment Dataset
Healthcare Appointment No Shows Dataset
@kaggle.wajahat1064_healthcare_appointment_dataset
Healthcare Appointment No Shows Dataset
@kaggle.wajahat1064_healthcare_appointment_dataset
This dataset contains data on whether someone would showed up for a medical appointment or not.'
107K rows and 15 columns, 1 target variable: showed_up substantial enough to train a machine learning model
We can use this data to predict whether someone would show up for a medical appointment or not.
CREATE TABLE healthcare_noshows (
"patientid" DOUBLE,
"appointmentid" BIGINT,
"gender" VARCHAR,
"scheduledday" TIMESTAMP,
"appointmentday" TIMESTAMP,
"age" BIGINT,
"neighbourhood" VARCHAR,
"scholarship" BOOLEAN,
"hipertension" BOOLEAN,
"diabetes" BOOLEAN,
"alcoholism" BOOLEAN,
"handcap" BOOLEAN,
"sms_received" BOOLEAN,
"showed_up" BOOLEAN,
"date_diff" BIGINT
);Anyone who has the link will be able to view this.