sources
Data license: CC-BY
1 row where datasetId = 4140 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 |
---|---|---|---|---|---|---|---|---|
16968 | Youth Mortality Rate (UN IGME (2021)) | { "link": "https://childmortality.org/data", "retrievedDate": "2022-06-30", "additionalInfo": "Youth Mortality Rates measures the share of newborns who die before reaching a given age. This dataset was constructed by Our World in Data based on data from the United Nations Inter-agency Group for Child Mortality Estimation (UN IGME).\n\nWe define and calculate the 'youth mortality' for different age cut-offs based on the combination of different metrics:\n\n- Under-ten mortality rate: \n - Under-5 mortality rates (the share of newborns who die before reaching the age of five)\n - 5-9 mortality rates (the share of children aged 5 who die before reaching the age of 9).\n\n- Under-fifteen mortality rate: \n - Under-5 mortality rates (the share of newborns who die before reaching the age of five)\n - 5-14 mortality rates (the share of children aged 5 who die before reaching the age of 14).\n\n- Under-twenty mortality rate: \n - Under-15 mortality rates (the share of newborns who die before reaching the age of fifteen)\n - 15-19 mortality rates (the share of children aged 15 who die before reaching the age of 19).\n\n- Under-twenty-five mortality rate: \n - Under-5 mortality rates (the share of newborns who die before reaching the age of five)\n - 5-24 mortality rates (the share of children aged 5 who die before reaching the age of 24).\n\nAll of these metrics are available from the UN IGME (2021). This dataset should be next updated by the source in December 2022. We will update it on Our World in Data soon after the new version is published. At the link above you can directly access the source page and see the latest available data.", "dataPublishedBy": "OWID based on United Nations Inter-agency Group for Child Mortality Estimation (2021)", "dataPublisherSource": "Civil registration systems, and household surveys and censuses" } |
2019-06-06 15:07:06 | 2019-06-06 15:07:06 | Youth Mortality Rates - UN IGME (2021) 4140 | Youth Mortality Rates measures the share of newborns who die before reaching a given age. This dataset was constructed by Our World in Data based on data from the United Nations Inter-agency Group for Child Mortality Estimation (UN IGME). We define and calculate the 'youth mortality' for different age cut-offs based on the combination of different metrics: - Under-ten mortality rate: - Under-5 mortality rates (the share of newborns who die before reaching the age of five) - 5-9 mortality rates (the share of children aged 5 who die before reaching the age of 9). - Under-fifteen mortality rate: - Under-5 mortality rates (the share of newborns who die before reaching the age of five) - 5-14 mortality rates (the share of children aged 5 who die before reaching the age of 14). - Under-twenty mortality rate: - Under-15 mortality rates (the share of newborns who die before reaching the age of fifteen) - 15-19 mortality rates (the share of children aged 15 who die before reaching the age of 19). - Under-twenty-five mortality rate: - Under-5 mortality rates (the share of newborns who die before reaching the age of five) - 5-24 mortality rates (the share of children aged 5 who die before reaching the age of 24). All of these metrics are available from the UN IGME (2021). This dataset should be next updated by the source in December 2022. We will update it on Our World in Data soon after the new version is published. At the link above you can directly access the source page and see the latest available data. | https://childmortality.org/data | OWID based on United Nations Inter-agency Group for Child Mortality Estimation (2021) |
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");