Panic Disorder Detection Dataset
Detect Mental Problems using this dataset..
@kaggle.muhammadshahidazeem_panic_disorder_detection_dataset
Detect Mental Problems using this dataset..
@kaggle.muhammadshahidazeem_panic_disorder_detection_dataset
this dataset contains 120000 records about Panic disorder patients. dataset contains two files.
**Panic_Disorder_training: ** use this file to train your model. this file contains 100000 labeled records.
**Panic_Disorder_testing: ** use this file to test your model. this file contains 20000 labeled records.
you can use this file for your research in clinical field.
CREATE TABLE panic_disorder_dataset_testing (
"participant_id" BIGINT,
"age" BIGINT,
"gender" VARCHAR,
"family_history" VARCHAR,
"personal_history" VARCHAR,
"current_stressors" VARCHAR,
"symptoms" VARCHAR,
"severity" VARCHAR,
"impact_on_life" VARCHAR,
"demographics" VARCHAR,
"medical_history" VARCHAR,
"psychiatric_history" VARCHAR,
"substance_use" VARCHAR,
"coping_mechanisms" VARCHAR,
"social_support" VARCHAR,
"lifestyle_factors" VARCHAR,
"panic_disorder_diagnosis" BIGINT
);CREATE TABLE panic_disorder_dataset_training (
"participant_id" BIGINT,
"age" BIGINT,
"gender" VARCHAR,
"family_history" VARCHAR,
"personal_history" VARCHAR,
"current_stressors" VARCHAR,
"symptoms" VARCHAR,
"severity" VARCHAR,
"impact_on_life" VARCHAR,
"demographics" VARCHAR,
"medical_history" VARCHAR,
"psychiatric_history" VARCHAR,
"substance_use" VARCHAR,
"coping_mechanisms" VARCHAR,
"social_support" VARCHAR,
"lifestyle_factors" VARCHAR,
"panic_disorder_diagnosis" BIGINT
);Anyone who has the link will be able to view this.