sources
Data license: CC-BY
1 row where datasetId = 3272 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 |
---|---|---|---|---|---|---|---|---|
16776 | Missing women estimates (Bongaarts & Guilmoto, 2015) | { "link": "https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1728-4457.2015.00046.x", "retrievedDate": "17th April 2019", "additionalInfo": "Missing women are defined as the number of additional women who would be alive in the absence of sex discrimination. Missing women are the sum of women missing at birth (as a result of sex-selective abortion) and excess female mortality through infanticide or neglect.\n\nMissing female births and excess female mortality are calculated based on the difference between observed and expected sex ratios.\n\nAuthors have calculated this historically from 1970 to today in five-year intervals, with projections through to 2050.", "dataPublishedBy": "Bongaarts, J., & Guilmoto, C. Z. (2015). How many more missing women? Excess female mortality and prenatal sex selection, 1970\u20132050. Population and Development Review, 41(2), 241-269." } |
2019-04-17 19:05:19 | 2019-04-17 19:05:19 | Missing women estimates (Bongaarts & Guilmoto, 2015) 3272 | Missing women are defined as the number of additional women who would be alive in the absence of sex discrimination. Missing women are the sum of women missing at birth (as a result of sex-selective abortion) and excess female mortality through infanticide or neglect. Missing female births and excess female mortality are calculated based on the difference between observed and expected sex ratios. Authors have calculated this historically from 1970 to today in five-year intervals, with projections through to 2050. | https://onlinelibrary.wiley.com/doi/abs/10.1111/j.1728-4457.2015.00046.x | Bongaarts, J., & Guilmoto, C. Z. (2015). How many more missing women? Excess female mortality and prenatal sex selection, 1970–2050. Population and Development Review, 41(2), 241-269. |
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");