sources
Data license: CC-BY
1 row where datasetId = 5429 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 |
---|---|---|---|---|---|---|---|---|
21264 | The Economist (2023) | { "link": "https://github.com/TheEconomist/covid-19-the-economist-global-excess-deaths-model", "retrievedDate": "2023-06-06", "additionalInfo": "Data from The Economist estimating the number of excess deaths, from all causes, during the COVID-19 pandemic for 223 countries & regions. The Economist publishes new estimates each day. We update our charts with the latest available data each week.\n\nExcess deaths measure the difference between how many people died during the pandemic, from any cause, and how many deaths would have been expected had there been no pandemic.\n\nMany countries have not reported any all-cause mortality data during the pandemic, which means their entire data series is estimated. Other countries report data regularly, but it is not always up-to-date due to delays in reporting; for these, only recent weeks are estimated. These delays, as well as incomplete reporting coverage, mean the reported number of deaths might not count all deaths that occurred.\n\nThe Economist's GitHub page, which contains their data and code, is here: https://github.com/TheEconomist/covid-19-the-economist-global-excess-deaths-model\n\nTo read The Economist's article presenting the model estimates, see: https://www.economist.com/graphic-detail/coronavirus-excess-deaths-estimates\n\nTo read about the model methodology, see: https://www.economist.com/graphic-detail/2021/05/13/how-we-estimated-the-true-death-toll-of-the-pandemic\n\nFor the Our World in Data page on excess mortality during COVID-19, with expanded explanations and data from other sources, see: https://ourworldindata.org/excess-mortality-covid", "dataPublishedBy": "The Economist" } |
2021-12-05 00:40:52 | 2023-06-06 09:34:46 | Excess Mortality Estimates – The Economist (2023) 5429 | Data from The Economist estimating the number of excess deaths, from all causes, during the COVID-19 pandemic for 223 countries & regions. The Economist publishes new estimates each day. We update our charts with the latest available data each week. Excess deaths measure the difference between how many people died during the pandemic, from any cause, and how many deaths would have been expected had there been no pandemic. Many countries have not reported any all-cause mortality data during the pandemic, which means their entire data series is estimated. Other countries report data regularly, but it is not always up-to-date due to delays in reporting; for these, only recent weeks are estimated. These delays, as well as incomplete reporting coverage, mean the reported number of deaths might not count all deaths that occurred. The Economist's GitHub page, which contains their data and code, is here: https://github.com/TheEconomist/covid-19-the-economist-global-excess-deaths-model To read The Economist's article presenting the model estimates, see: https://www.economist.com/graphic-detail/coronavirus-excess-deaths-estimates To read about the model methodology, see: https://www.economist.com/graphic-detail/2021/05/13/how-we-estimated-the-true-death-toll-of-the-pandemic For the Our World in Data page on excess mortality during COVID-19, with expanded explanations and data from other sources, see: https://ourworldindata.org/excess-mortality-covid | https://github.com/TheEconomist/covid-19-the-economist-global-excess-deaths-model | The Economist |
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");