Disease Symptom Prediction
helps to create a disease prediction or healthcare system
@kaggle.itachi9604_disease_symptom_description_dataset
helps to create a disease prediction or healthcare system
@kaggle.itachi9604_disease_symptom_description_dataset
A dataset to provide the students a source to create a healthcare related system.
A project on the same using double Decision Tree Classifiication is available at : https://github.com/itachi9604/healthcare-chatbot
Get_dummies processed file will be available at https://www.kaggle.com/rabisingh/symptom-checker?select=Training.csv
There are columns containing diseases, their symptoms , precautions to be taken, and their weights.
This dataset can be easily cleaned by using file handling in any language. The user only needs to understand how rows and coloumns are arranged.
The data in this CSV sheet is for reference and training purposes only, and actual data may vary.
I have created this dataset with help of a friend Pratik Rathod. As there was an existing dataset like this which was difficult to clean.
CREATE TABLE dataset (
"disease" VARCHAR,
"symptom_1" VARCHAR,
"symptom_2" VARCHAR,
"symptom_3" VARCHAR,
"symptom_4" VARCHAR,
"symptom_5" VARCHAR,
"symptom_6" VARCHAR,
"symptom_7" VARCHAR,
"symptom_8" VARCHAR,
"symptom_9" VARCHAR,
"symptom_10" VARCHAR,
"symptom_11" VARCHAR,
"symptom_12" VARCHAR,
"symptom_13" VARCHAR,
"symptom_14" VARCHAR,
"symptom_15" VARCHAR,
"symptom_16" VARCHAR,
"symptom_17" VARCHAR
);CREATE TABLE symptom_description (
"disease" VARCHAR,
"description" VARCHAR
);CREATE TABLE symptom_precaution (
"disease" VARCHAR,
"precaution_1" VARCHAR,
"precaution_2" VARCHAR,
"precaution_3" VARCHAR,
"precaution_4" VARCHAR
);CREATE TABLE symptom_severity (
"symptom" VARCHAR,
"weight" BIGINT
);Anyone who has the link will be able to view this.