sources
Data license: CC-BY
1 row where datasetId = 5651 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 |
---|---|---|---|---|---|---|---|---|
22711 | Food affordability (World Bank; FAO, 2022) | { "link": "https://databank.worldbank.org/source/food-prices-for-nutrition", "additionalInfo": "This variable is sourced from the Food Prices for Nutrition DataHub (https://www.worldbank.org/en/programs/icp/brief/foodpricesfornutrition) and its associated DataBank (https://databank.worldbank.org/source/food-prices-for-nutrition).\n\nThe dataset is based on the methodology developed in Herforth et al. (2022), which is a background paper for the UN agencies\u2019 annual report on The State of Food Security and Nutrition in the World 2022 (https://www.fao.org/publications/sofi). It is based on data on prices for locally available food items from the World Bank's International Comparison Program (ICP) (https://icp.worldbank.org) matched to other data on food composition and dietary requirements.\n\nThe nutritional requirements used in this study are in line with the WHO's recommendations for the median woman of reproductive age. The authors note two key two reasons for this:\n\n(1) Requirements fall roughly at the median of the entire population distribution, in the sense that least-cost diets to meet energy and nutrient requirements for people in this reference group approximate the median level of least costs for all sex-age groups over the entire life cycle. This reference group is therefore a good representation of the population as a whole.\n\n(2) Women of reproductive age are typically a nutritionally vulnerable population group, as seen in their increased risk of dietary inadequacies (due to social practices and norms that often disadvantage them in terms of access to food), which have important consequences for themselves and their children. Previous studies have also based their analyses on this reference group.", "dataPublishedBy": "Food Prices for Nutrition data at the World Bank, based on Herforth, Venkat, Bai, Costlow, Holleman & Masters (2022)." } |
2022-07-11 12:28:27 | 2022-07-11 12:28:27 | Food affordability (World Bank; FAO, 2022) 5651 | This variable is sourced from the Food Prices for Nutrition DataHub (https://www.worldbank.org/en/programs/icp/brief/foodpricesfornutrition) and its associated DataBank (https://databank.worldbank.org/source/food-prices-for-nutrition). The dataset is based on the methodology developed in Herforth et al. (2022), which is a background paper for the UN agencies’ annual report on The State of Food Security and Nutrition in the World 2022 (https://www.fao.org/publications/sofi). It is based on data on prices for locally available food items from the World Bank's International Comparison Program (ICP) (https://icp.worldbank.org) matched to other data on food composition and dietary requirements. The nutritional requirements used in this study are in line with the WHO's recommendations for the median woman of reproductive age. The authors note two key two reasons for this: (1) Requirements fall roughly at the median of the entire population distribution, in the sense that least-cost diets to meet energy and nutrient requirements for people in this reference group approximate the median level of least costs for all sex-age groups over the entire life cycle. This reference group is therefore a good representation of the population as a whole. (2) Women of reproductive age are typically a nutritionally vulnerable population group, as seen in their increased risk of dietary inadequacies (due to social practices and norms that often disadvantage them in terms of access to food), which have important consequences for themselves and their children. Previous studies have also based their analyses on this reference group. | https://databank.worldbank.org/source/food-prices-for-nutrition | Food Prices for Nutrition data at the World Bank, based on Herforth, Venkat, Bai, Costlow, Holleman & Masters (2022). |
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");