Which of the following is not a dimension of Multidimensional Poverty Index?

There are several ways of measuring poverty rate. One is through income or expenditure. For example, since 2011, the World Bank has set a cutoff of $1.90 a day income in determining extreme poverty. Using expenditure (real), you divide total household expenditure per day by total adult equivalence. A household is then classified as poor if it falls below the poverty line.

Multidimensional poverty index (MPI) is currently used by UNEP as a global poverty index and has been adapted in SDGs. MPI is based on Alkire-Foster method. MPI reveals a different pattern of poverty than income poverty, as it illuminates a different set of deprivations. The MPI has three dimensions: health, education, and standard of living. A person is identified as multidimensionally poor (or ‘MPI poor’) if he/she is deprived in at least one third (33.3%) of the weighted sum of all relevant indicators. To be deprived means that one fall below the weighted score in each dimension. The following dimensions and indicators are used in coming up with the MPI.

  1. Health (each indicator weighted equally at 1/6)
    • Child Mortality: If any child has died in the family
    • Nutrition: If any adult or child in the family is malnourished.
  2. Education (each indicator weighted equally at 1/6 )
    • Years of Schooling (if no household member has completed 5 years of schooling )
    • Child Enrolment (if any school-aged child is out of school in years 1 to 8)
  3. Standard of Living (each of the six indicators weighted equally at 1/18)
    • Electricity (no electricity is poor)
    • Safe drinking water (The household does not have access to safe drinking water, or safe water is more than a 45-minute walk
    • Sanitation (sanitation facility is not improved, or it is improved but shared with other households)
    • Flooring (dirt/sand/dung are poor)
    • Cooking Fuel (wood/charcoal/dung are poor)
    • Assets (poor if do not own more than one of: radio, tv, telephone, bike, motorbike)

Calculation of MPI

MPI is calculated as follows:

\[\begin{equation} MPI=H\times A \end{equation}\]
Where
* A is the intensity of poverty i.e. average percentage of dimensions in which poor people are deprived
* H Is the percentage of people who are poor, i.e. headcount ratio

If a person is deprived in 20-33.3% of the weighted indicators the person is considered ‘Vulnerable to Poverty’, and if deprived in 50% or more (i.e. k=50%), the person is identified as being in ‘Severe Poverty’.

The example that I will use is based on a survey (I have generated the data) and has the three dimensions. Indicators that I have used differ slightly with those listed earlier. Weights applied are clearly indicated.

  1. Health With each indicator having a weight of 1/6
    • Nutrition: Based on HDDs of each family, poor if household consume<=3 diets
    • Health status: A respondent is asked to give an overall scale (1 to 3) of health status of a family. A scale of 1 is poor
  2. Education Has one indicator with a score of 1/3
    • Child Enrolment (if any school-aged child is out of school in years 1 to 8)
  3. Standard of Living (each of the five indicators weighted equally at 1/15)
    • Safe drinking water (safe water is more than a 30-minute walk
    • Sanitation (sanitation facility is not improved, or it is improved but shared with other households)
    • Flooring (dirt/sand/dung are poor)
    • Cooking Fuel (wood/charcoal/dung are poor)
    • Assets (poor if do not own more than one of: bicycle, radio,tv,mobile phone)

First, import the stata file that contains the data. The data has not been weighted (yet), and contain all variables necessary. Most variables are binary e.g. yes where a household is deprived.

Apply all necessary packages required by R.

library(haven)
library(knitr)
library(kableExtra)
library(dplyr)
library(tidyr)
library(ggplot2)
poverty <- read_dta("D:/My projects/Stanley/poverty.dta")
head(poverty,10) %>%
  kable("html") %>%
  kable_styling(font_size=12) %>%
  kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"))
IDhddshealthschoolchildrentoiletwaterfuelfloorbicycleradiotvphoneno_assets17201511000112711115110000038211301100000483116011000115631130110000066111601011013741112010000008511120100000095111151000011109111151101012

Weight the data, and display the data of the first 15 respondents. A column of people that are experiencing multidimensional poverty has been included. A person is multidimensional poor if weighted sum of dimensions>0.33.

poverty=select(poverty,ID,hdds,health,schoolchildren,toilet,water,fuel,floor,no_assets)
poverty_data= poverty %>%
  mutate(hdds=round(1/6*(ifelse(hdds<=3,1,0)),2),
         health=round(1/6*(ifelse(health>1,0,1)),2),
         schoolchildren=round(1/3*(ifelse(schoolchildren>0,1,0)),2),
         toilet=round(1/15*toilet,2),
         water=round(1/15*(ifelse(water>30,1,0)),2),
         fuel=round(1/15*fuel,2),
         floor=round(1/15*floor,2),
         no_assets=round(1/15*(ifelse(no_assets>1,0,1)),2))

poverty_data= poverty_data%>%
  mutate(weighted.sum=rowSums(poverty_data[,c("hdds","schoolchildren","toilet","water","fuel","floor","no_assets")]),
         multidimensionalpoor=factor(ifelse(weighted.sum>0.33,0,1),labels = c("Yes","No")))

head(poverty_data,15) %>%
  kable("html") %>%
  kable_styling(font_size=12,position = "center",full_width = T) %>%
  kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"))
IDhddshealthschoolchildrentoiletwaterfuelfloorno_assetsweighted.summultidimensionalpoor100.000.000.070.000.070.070.070.28No200.170.330.070.000.070.070.070.61Yes300.000.330.070.000.070.070.070.61Yes400.000.330.070.070.070.070.070.68Yes500.000.330.070.000.070.070.070.61Yes600.170.330.070.070.070.000.000.54Yes700.170.330.070.000.070.000.070.54Yes800.170.330.070.000.070.000.070.54Yes900.170.330.070.000.070.000.070.54Yes1000.170.330.070.000.070.070.000.54Yes1100.000.330.070.000.070.000.070.54Yes1200.000.330.070.070.070.000.070.61Yes1300.000.330.070.070.070.000.070.61Yes1400.000.330.070.000.070.070.000.54Yes1500.000.330.070.000.070.070.070.61Yes

Get headcount ratio (H) of those experiencing multidimensional poverty which in this case is 19.2%.

hh_ratio=round(prop.table(table(poverty_data$multidimensionalpoor)),3); hh_ratio
## 
##   Yes    No 
## 0.192 0.808

We are interested with MPI. Thus go ahead and get intensity i.e.average percentage of dimensions in which poor people are deprived.

First, subset the data according to those who are experiencing multidimensional poverty i.e. “Yes” in the last column.

Based on the result, intensity is 0.2360774. This implies that the average number of dimensions in which poor people are deprived is 24%.

intensity_data=subset(poverty_data,multidimensionalpoor=="No")
avg=mean(poverty_data$weighted.sum,na.rm=T);avg
## [1] 0.2360774

After calculation, MPI= 0.0453269, and this reflect population that is multidimensionally poor adjusted by the intensity of the deprivation suffered.

Which of the dimensions are used in multidimensional poverty index?

What is the Multidimensional Poverty Measure? An index that captures the percentage of households in a country deprived along three dimensions of well-being – monetary poverty, education, and basic infrastructure services – to provide a more complete picture of poverty.

What are the three dimensions of the Multidimensional Poverty Index MPI )?

India's national MPI captures multiple and simultaneous deprivations faced by households across the three macro dimensions of health, education and living standards.

What are the 10 indicators of multidimensional poverty index?

10 indicators (health-2, education-2, standard of living-6) of MPI:.
Health (each indicator weighted equally at 1/6) Child mortality. Nutrition..
Education (each indicator weighted equally at 1/6) Years of schooling. Child school attendance..
Standard of living (each of the six indicators weighted equally at 1/18).

What are the multi dimensional problems of poverty?

Multidimensional poverty encompasses the various deprivations experienced by poor people in their daily lives – such as poor health, lack of education, inadequate living standards, disempowerment, poor quality of work, the threat of violence, and living in areas that are environmentally hazardous, among others.