sources
Data license: CC-BY
1 row where datasetId = 5423 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 |
---|---|---|---|---|---|---|---|---|
21258 | Catalá-López et al. (2020) | { "link": "https://doi.org/10.1186/s13063-019-3944-9", "retrievedDate": "29/11/2021", "additionalInfo": "This is a dataset of all randomized controlled trials (RCTs) published in high-impact medical journals (with an impact factor above 10 in 2017). This includes primary analyses, secondary analyses and methods papers of RCTs. The papers were extracted from PubMed and their associated raw metadata was collected from the Web of Science. Country refers to the country of the first author's affiliated institution.", "dataPublishedBy": "Catal\u00e1-L\u00f3pez, F., Aleixandre-Benavent, R., Caulley, L., Hutton, B., Tabar\u00e9s-Seisdedos, R., Moher, D., & Alonso-Arroyo, A. (2020). Global mapping of randomised trials related articles published in high-impact-factor medical journals: A cross-sectional analysis. Trials, 21(1), 34. https://doi.org/10.1186/s13063-019-3944-9", "dataPublisherSource": "Extracted from PubMed" } |
2021-11-29 22:11:31 | 2021-11-29 22:11:31 | Randomized controlled trials published in high-impact medical journals 5423 | This is a dataset of all randomized controlled trials (RCTs) published in high-impact medical journals (with an impact factor above 10 in 2017). This includes primary analyses, secondary analyses and methods papers of RCTs. The papers were extracted from PubMed and their associated raw metadata was collected from the Web of Science. Country refers to the country of the first author's affiliated institution. | https://doi.org/10.1186/s13063-019-3944-9 | Catalá-López, F., Aleixandre-Benavent, R., Caulley, L., Hutton, B., Tabarés-Seisdedos, R., Moher, D., & Alonso-Arroyo, A. (2020). Global mapping of randomised trials related articles published in high-impact-factor medical journals: A cross-sectional analysis. Trials, 21(1), 34. https://doi.org/10.1186/s13063-019-3944-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");