sources
Data license: CC-BY
1 row where datasetId = 1938 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 |
---|---|---|---|---|---|---|---|---|
13941 | WHO (2018) and Tebbens et al. (2011) | { "link": "http://www.who.int/immunization/monitoring_surveillance/data/en/ and https://extranet.who.int/polis/public/CaseCount.aspx", "retrievedDate": "5 February 2018", "additionalInfo": "For the estimated number of polio cases using Tebbens et al.\u2019s 2010 model:\r\nThe WHO\u2019s dataset of reported polio cases from 1980 onwards (the first link above) is used to produce an estimate of the actual number of polio cases. An explanation of the correction factor algorithm can be found here: https://ourworldindata.org/tebbens-et-al-2011-estimation-of-the-number-of-paralytic-polio-cases/ Part of the model input consists of the WHO\u2019s surveillance system that can be found under the second link cited above. \r\n\r\n\r\nFor the estimated number of polio cases that disregard any reported cases after a country was certified polio-free and use Tebbens et al.\u2019s (2010) model: \r\nThe WHO\u2019s dataset from 1980 onwards (the first link above) was modified by deleting all documented polio cases after the year in which polio ceased to be endemic in each country (see map and data here: https://ourworldindata.org/grapher/the-decade-of-the-last-recorded-case-of-paralytic-polio-by-country). Then, Tebbens et al.\u2019s (2010) model is applied in the same way as for the \u201cEstimated number of polio cases\u201d, for which we provide an explanation here: https://ourworldindata.org/tebbens-et-al-2011-estimation-of-the-number-of-paralytic-polio-cases/.", "dataPublishedBy": "Our World in Data based on World Health Organization (2018) and Tebbens et al. (2010)", "dataPublisherSource": "WHO collects data through own surveillance system" } |
2018-02-05 13:50:43 | 2018-02-23 14:41:53 | Reported number and different estimations of polio cases (WHO, 2018) 1938 | For the estimated number of polio cases using Tebbens et al.’s 2010 model: The WHO’s dataset of reported polio cases from 1980 onwards (the first link above) is used to produce an estimate of the actual number of polio cases. An explanation of the correction factor algorithm can be found here: https://ourworldindata.org/tebbens-et-al-2011-estimation-of-the-number-of-paralytic-polio-cases/ Part of the model input consists of the WHO’s surveillance system that can be found under the second link cited above. For the estimated number of polio cases that disregard any reported cases after a country was certified polio-free and use Tebbens et al.’s (2010) model: The WHO’s dataset from 1980 onwards (the first link above) was modified by deleting all documented polio cases after the year in which polio ceased to be endemic in each country (see map and data here: https://ourworldindata.org/grapher/the-decade-of-the-last-recorded-case-of-paralytic-polio-by-country). Then, Tebbens et al.’s (2010) model is applied in the same way as for the “Estimated number of polio cases”, for which we provide an explanation here: https://ourworldindata.org/tebbens-et-al-2011-estimation-of-the-number-of-paralytic-polio-cases/. | http://www.who.int/immunization/monitoring_surveillance/data/en/ and https://extranet.who.int/polis/public/CaseCount.aspx | Our World in Data based on World Health Organization (2018) and Tebbens et al. (2010) |
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");