sources
Data license: CC-BY
1 row where datasetId = 458 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 |
---|---|---|---|---|---|---|---|---|
580 | Clark et al. in World Happiness Report (2017) | { "link": "http://worldhappiness.report/wp-content/uploads/sites/2/2017/03/HR17-Ch5_w-oAppendix.pdf", "retrievedDate": null, "additionalInfo": "The variables have been dated 2017 in our dataset, in order to be consistent with the date of publication. However, the underlying data comes from various survey waves, varying by country. The online appendix in the original article provides details regarding actual dates of data collection.", "dataPublishedBy": "World Happiness Report", "dataPublisherSource": "Various surveys. Specificaly: USA (BRFSS); Australia (HILDA); Britain (BCS); Indonesia (IFLS)" } |
2017-05-05 20:51:28 | 2017-11-02 13:04:39 | Happiness predictors – World Happiness Report (2017) 458 | The variables have been dated 2017 in our dataset, in order to be consistent with the date of publication. However, the underlying data comes from various survey waves, varying by country. The online appendix in the original article provides details regarding actual dates of data collection. | http://worldhappiness.report/wp-content/uploads/sites/2/2017/03/HR17-Ch5_w-oAppendix.pdf | World Happiness Report |
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");