Mental Health Diagnosis And Treatment Monitoring
Mental health diagnosis,treatment, and monitoring dataset
@kaggle.uom190346a_mental_health_diagnosis_and_treatment_monitoring
Mental health diagnosis,treatment, and monitoring dataset
@kaggle.uom190346a_mental_health_diagnosis_and_treatment_monitoring
The Mental Health Diagnosis and Treatment Monitoring dataset contains 500 rows representing real-world mental health diagnoses, treatment plans, and outcomes. It includes patient demographics, symptom severity, medication, therapy types, and progress tracking. This dataset is synthetic and created for research and analysis purposes.
Ensure that patient data is anonymized, and models are tested for fairness and bias in their predictions. This dataset is synthetic and does not represent real patient information.
CREATE TABLE mental_health_diagnosis_treatment (
"patient_id" BIGINT,
"age" BIGINT,
"gender" VARCHAR,
"diagnosis" VARCHAR,
"symptom_severity_1_10" BIGINT -- Symptom Severity (1-10),
"mood_score_1_10" BIGINT -- Mood Score (1-10),
"sleep_quality_1_10" BIGINT -- Sleep Quality (1-10),
"physical_activity_hrs_week" BIGINT -- Physical Activity (hrs/week),
"medication" VARCHAR,
"therapy_type" VARCHAR,
"treatment_start_date" TIMESTAMP,
"treatment_duration_weeks" BIGINT -- Treatment Duration (weeks),
"stress_level_1_10" BIGINT -- Stress Level (1-10),
"outcome" VARCHAR,
"treatment_progress_1_10" BIGINT -- Treatment Progress (1-10),
"ai_detected_emotional_state" VARCHAR,
"adherence_to_treatment" BIGINT -- Adherence To Treatment (%)
);Anyone who has the link will be able to view this.