sources
Data license: CC-BY
1 row where datasetId = 5757 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 |
---|---|---|---|---|---|---|---|---|
27024 | Alkire, Kanagaratnam and Suppa (2022), The global Multidimensional Poverty Index (MPI) 2022 | { "link": "https://ophi.org.uk/multidimensional-poverty-index/", "retrievedDate": "2022-10-28", "additionalInfo": "The global Multidimensional Poverty Index (MPI) is an international measure of acute multidimensional poverty covering over 100 developing countries. It complements traditional monetary poverty measures by capturing the acute deprivations in health, education, and living standards that a person faces simultaneously.\n\n<h4>How is multidimensional poverty defined?</h4>\nBeing \u2018MPI poor\u2019 means that a person is deprived in a third or more of ten indicators, grouped into three dimensions: \n<ul>\n <li><strong>Health</strong> \u2013 using two indicators: nutrition, child mortality \n <li><strong>Education</strong> \u2013 using two indicators: years of schooling, school attendance\n <li><strong>Living standards</strong> \u2013 using five indicators: cooking fuel, sanitation, drinking water, electricity, housing, assets.</li>\n</ul>\nHouseholds are assessed as being deprived in a given indicator if they do not meet a certain threshold for that indicator. For instance, a household is deprived in the <em>Years of schooling</em> indicator if no household member has completed six years of schooling. A person is considered deprived in the <em>Cooking fuel</em> indicator if they cook using solid fuel, such as dung, agricultural crops, wood, charcoal, or coal. The thresholds for each indicator are published by OPHI in their <a href=\"https://www.ophi.org.uk/wp-content/uploads/OPHI_MPI_MN_54_2022.pdf\">methodological notes</a>.\n\nThe individual indicators are not \u2018weighted\u2019 equally: When adding up the number of indicators in which a person is deprived, some count for more than others. Health and education indicators are given a weight of 1/6, while the indicators within the living standards dimension are given a weight of 1/18. This means that the three dimensions \u2013 health, education and living standards \u2013 have an equal weight in the total of one-third each.\n\nIf the household survey data being used is missing any of the 10 indicators, that indicator is dropped from the calculation. The weights are then adjusted so that each dimension continues to be given a weight of one-third. MPI poverty estimates are only calculated if at least one indicator in each dimension is available.\n\nThe global MPI was developed by OPHI with the UN Development Programme (UNDP) for inclusion in UNDP\u2019s flagship Human Development Report in 2010. It has been published annually by OPHI and in the HDRs ever since.\n\nThis is the CME dataset, with \"current margin estimates\", which are essentially the regular global MPI in OPHI's publications.", "dataPublishedBy": "Alkire, S., Kanagaratnam, U., and Suppa, N. (2022). \u2018The global Multidimensional Poverty Index (MPI) 2022 country results and methodological note\u2019, OPHI MPI Methodological Note 52, Oxford Poverty and Human Development Initiative, University of Oxford.", "dataPublisherSource": "Demographic and Health Surveys (DHS), Multiple Indicator Cluster Surveys (MICS), and national surveys" } |
2022-09-06 12:48:20 | 2022-09-06 12:48:20 | Multidimensional Poverty Index (MPI) 2022 – Current estimates 5757 | The global Multidimensional Poverty Index (MPI) is an international measure of acute multidimensional poverty covering over 100 developing countries. It complements traditional monetary poverty measures by capturing the acute deprivations in health, education, and living standards that a person faces simultaneously. <h4>How is multidimensional poverty defined?</h4> Being ‘MPI poor’ means that a person is deprived in a third or more of ten indicators, grouped into three dimensions: <ul> <li><strong>Health</strong> – using two indicators: nutrition, child mortality <li><strong>Education</strong> – using two indicators: years of schooling, school attendance <li><strong>Living standards</strong> – using five indicators: cooking fuel, sanitation, drinking water, electricity, housing, assets.</li> </ul> Households are assessed as being deprived in a given indicator if they do not meet a certain threshold for that indicator. For instance, a household is deprived in the <em>Years of schooling</em> indicator if no household member has completed six years of schooling. A person is considered deprived in the <em>Cooking fuel</em> indicator if they cook using solid fuel, such as dung, agricultural crops, wood, charcoal, or coal. The thresholds for each indicator are published by OPHI in their <a href="https://www.ophi.org.uk/wp-content/uploads/OPHI_MPI_MN_54_2022.pdf">methodological notes</a>. The individual indicators are not ‘weighted’ equally: When adding up the number of indicators in which a person is deprived, some count for more than others. Health and education indicators are given a weight of 1/6, while the indicators within the living standards dimension are given a weight of 1/18. This means that the three dimensions – health, education and living standards – have an equal weight in the total of one-third each. If the household survey data being used is missing any of the 10 indicators, that indicator is dropped from the calculation. The weights are then adjusted so that each dimension continues t… | https://ophi.org.uk/multidimensional-poverty-index/ | Alkire, S., Kanagaratnam, U., and Suppa, N. (2022). ‘The global Multidimensional Poverty Index (MPI) 2022 country results and methodological note’, OPHI MPI Methodological Note 52, Oxford Poverty and Human Development Initiative, University of Oxford. |
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");