sources
Data license: CC-BY
1 row where datasetId = 5346 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
18066 | Tomitaka et al. (2018). Distributional patterns of item responses and total scores on the PHQ-9 in the general population: data from the National Health and Nutrition Examination Survey. | { "link": "https://link.springer.com/article/10.1186/s12888-018-1696-9", "additionalInfo": "Data reports the frequency of depressive symptoms from the 2013-2014 National Health and Nutrition Examination Survey in the United States (NHANES). Depressive symptoms were assessed using the Patient Health Questionnaire-9 (PHQ-9) in 5372 individuals across the general population.\n\nThe nine items of the PHQ-9 reflect the nine criteria on which DSM-5 diagnoses of depressive disorders are based. The PHQ-9 assesses the frequency of a variety of depressive symptoms within the past 2 weeks with 4-point response options: 0 = \u201cnot at all,\u201d 1\u2009=\u2009\u201cseveral days,\u201d 2 = \u201cmore than half the days,\u201d and 3 = \u201cnearly every day.\u201d", "dataPublishedBy": "Tomitaka, S., Kawasaki, Y., Ide, K., Akutagawa, M., Yamada, H., Ono, Y., & Furukawa, T. A. (2018). Distributional patterns of item responses and total scores on the PHQ-9 in the general population: data from the National Health and Nutrition Examination Survey. BMC Psychiatry, 18(1), 1-9." } |
2021-07-15 14:59:04 | 2021-07-15 14:59:04 | Symptoms of depression (Tomitaka et al. 2018) 5346 | Data reports the frequency of depressive symptoms from the 2013-2014 National Health and Nutrition Examination Survey in the United States (NHANES). Depressive symptoms were assessed using the Patient Health Questionnaire-9 (PHQ-9) in 5372 individuals across the general population. The nine items of the PHQ-9 reflect the nine criteria on which DSM-5 diagnoses of depressive disorders are based. The PHQ-9 assesses the frequency of a variety of depressive symptoms within the past 2 weeks with 4-point response options: 0 = “not at all,” 1 = “several days,” 2 = “more than half the days,” and 3 = “nearly every day.” | https://link.springer.com/article/10.1186/s12888-018-1696-9 | Tomitaka, S., Kawasaki, Y., Ide, K., Akutagawa, M., Yamada, H., Ono, Y., & Furukawa, T. A. (2018). Distributional patterns of item responses and total scores on the PHQ-9 in the general population: data from the National Health and Nutrition Examination Survey. BMC Psychiatry, 18(1), 1-9. |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");