sources
Data license: CC-BY
1 row where datasetId = 5477 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 |
---|---|---|---|---|---|---|---|---|
21302 | Schalkwijk et al. (2014) | { "link": "https://doi.org/10.1017/S1461145714000224", "retrievedDate": "30/11/2021", "additionalInfo": "This is a dataset of dropout rates in published clinical trials of antidepressants for major depressive disorder. Studies since 1980 were identified from Medline, PsycINFO, Cochrane and CINAHL databases. Eligible trials were randomized placebo-controlled clinical trials of antidepressants to treat acute episodes of unipolar major depressive disorder (diagnosed by DSM-III, DSM-III-R, DSM-IV, ICD-9, ICD-10 or RVC diagnostic criteria) in adults, and which used intention-to-treat analysis.", "dataPublishedBy": "Schalkwijk, S., Undurraga, J., Tondo, L., & Baldessarini, R. J. (2014). Declining efficacy in controlled trials of antidepressants: Effects of placebo dropout. The International Journal of Neuropsychopharmacology, 17(08), 1343\u20131352. https://doi.org/10.1017/S1461145714000224", "dataPublisherSource": "Published clinical trials on Medline, PsycINFO, Cochrane and CINAHL databases since 1980" } |
2022-01-24 13:27:46 | 2022-01-24 13:27:46 | Dropouts in antidepressant trials by cause – Schalkwijk (2014) 5477 | This is a dataset of dropout rates in published clinical trials of antidepressants for major depressive disorder. Studies since 1980 were identified from Medline, PsycINFO, Cochrane and CINAHL databases. Eligible trials were randomized placebo-controlled clinical trials of antidepressants to treat acute episodes of unipolar major depressive disorder (diagnosed by DSM-III, DSM-III-R, DSM-IV, ICD-9, ICD-10 or RVC diagnostic criteria) in adults, and which used intention-to-treat analysis. | https://doi.org/10.1017/S1461145714000224 | Schalkwijk, S., Undurraga, J., Tondo, L., & Baldessarini, R. J. (2014). Declining efficacy in controlled trials of antidepressants: Effects of placebo dropout. The International Journal of Neuropsychopharmacology, 17(08), 1343–1352. https://doi.org/10.1017/S1461145714000224 |
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");