diff --git a/.github/workflows/mirror-codeberg.yaml b/.github/workflows/mirror-codeberg.yaml new file mode 100644 index 00000000..b2896b94 --- /dev/null +++ b/.github/workflows/mirror-codeberg.yaml @@ -0,0 +1,19 @@ +name: Mirror to other git server +on: + push: + branches: + - main + tags: + - "*" +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: yesolutions/mirror-action@master + with: + REMOTE: https://codeberg.org/katilingban/ppitables + GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }} + GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }} diff --git a/.gitignore b/.gitignore index 301121e6..e50a7e67 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /revdep/library /revdep/library.noindex docs +README.html diff --git a/DESCRIPTION b/DESCRIPTION index ba8ecf66..83bd1e33 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -9,12 +9,12 @@ Authors@R: person("Ernest", "Guevarra", Description: The Poverty Probability Index (PPI) is a poverty measurement tool for organizations and businesses with a mission to serve the poor. The PPI is statistically-sound, yet simple to use: the answers to 10 questions about - a household’s characteristics and asset ownership are scored to compute the - likelihood that the household is living below the poverty line – or above by - only a narrow margin. This package contains country-specific lookup data tables - used as reference to determine the poverty likelihood of a household based - on their score from the country-specific PPI questionnaire. These lookup - tables have been extracted from documentation of the PPI found at + a household's characteristics and asset ownership are scored to compute the + likelihood that the household is living below the poverty line - or above by + only a narrow margin. This package contains country-specific lookup data + tables used as reference to determine the poverty likelihood of a household + based on their score from the country-specific PPI questionnaire. These + lookup tables have been extracted from documentation of the PPI found at and managed by Innovations for Poverty Action . License: MIT + file LICENSE diff --git a/R/00_mozambique.R b/R/00_mozambique.R new file mode 100644 index 00000000..affa0a63 --- /dev/null +++ b/R/00_mozambique.R @@ -0,0 +1,90 @@ +#' +#' Poverty Probability Index (PPI) lookup table for Mozambique +#' +#' This PPI was created in April 2019 using Mozambique’s 2014/15 Inquérito Sobre +#' Orçamento Familiar Survey and was released in May 2019. +#' +#' @format A data frame with 15 columns and 101 rows: +#' \describe{ +#' \item{\code{score}}{PPI score} +#' \item{\code{nl100}}{National poverty line (100)} +#' \item{\code{nl150}}{National poverty line (150)} +#' \item{\code{nl200}}{National poverty line (200)} +#' \item{\code{ppp190}}{Below $1.90 per day purchasing power parity (2011)} +#' \item{\code{ppp320}}{Below $3.20 per day purchasing power parity (2011)} +#' \item{\code{ppp550}}{Below $5.50 per day purchasing power parity (2011)} +#' \item{\code{ppp800}}{Below $8.00 per day purchasing power parity (2011)} +#' \item{\code{ppp1100}}{Below $11.00 per day purchasing power parity (2011)} +#' \item{\code{ppp1500}}{Below $15.00 per day purchasing power parity (2011)} +#' \item{\code{ppp2170}}{Below $21.70 per day purchasing power parity (2011)} +#' \item{\code{percentile20}}{Below 20th percentile poverty line} +#' \item{\code{percentile40}}{Below 40th percentile poverty line} +#' \item{\code{percentile60}}{Below 50th percentile poverty line} +#' \item{\code{percentile80}}{Below 60th percentile poverty line} +#' } +#' +#' @examples +#' # Access Mozambique PPI table +#' ppiMOZ2019 +#' +#' # Given a specific PPI score (from 0 - 100), get the row of poverty +#' # probabilities from PPI table it corresponds to +#' ppiScore <- 50 +#' ppiMOZ2019[ppiMOZ2019$score == ppiScore, ] +#' +#' # Use subset() function to get the row of poverty probabilities corresponding +#' # to specific PPI score +#' ppiScore <- 50 +#' subset(ppiMOZ2019, score == ppiScore) +#' +#' # Given a specific PPI score (from 0 - 100), get a poverty probability +#' # based on a specific poverty definition. In this example, the national +#' # poverty line is used +#' ppiScore <- 50 +#' ppiMOZ2019[ppiMOZ2019$score == ppiScore, "nl100"] +#' +#' @source \url{https://www.povertyindex.org} +#' +"ppiMOZ2019" + + +#' +#' Poverty Probability Index (PPI) lookup table for Mozambique +#' +#' The latest version of the PPI for Mozambique was created in June 2024 by +#' Innovations for Poverty Action (IPA) based on data from the 2022 Demographic +#' and Health Survey (DHS). +#' +#' @format A data frame with 6 columns and 101 rows: +#' \describe{ +#' \item{\code{score}}{PPI score} +#' \item{\code{percentile20}}{Below 20th percentile poverty line} +#' \item{\code{percentile40}}{Below 40th percentile poverty line} +#' \item{\code{percentile50}}{Below 50th percentile poverty line} +#' \item{\code{percentile60}}{Below 60th percentile poverty line} +#' \item{\code{percentile80}}{Below 80th percentile poverty line} +#' } +#' +#' @examples +#' # Access Mozambique PPI table +#' ppiMOZ2024 +#' +#' # Given a specific PPI score (from 0 - 100), get the row of poverty +#' # probabilities from PPI table it corresponds to +#' ppiScore <- 50 +#' ppiMOZ2024[ppiMOZ2024$score == ppiScore, ] +#' +#' # Use subset() function to get the row of poverty probabilities +#' # corresponding to specific PPI score +#' ppiScore <- 50 +#' subset(ppiMOZ2024, score == ppiScore) +#' +#' # Given a specific PPI score (from 0 - 100), get a poverty probability +#' # based on a specific poverty definition. In this example, the national +#' # poverty line is used +#' ppiScore <- 50 +#' ppiMOZ2024[ppiMOZ2024$score == ppiScore, "percentile80"] +#' +#' @source \url{https://www.povertyindex.org} +#' +"ppiMOZ2024" diff --git a/R/04_data.R b/R/04_data.R index 785452cd..e36f4cff 100644 --- a/R/04_data.R +++ b/R/04_data.R @@ -2641,55 +2641,6 @@ ################################################################################ "ppiGHA2019" -################################################################################ -# -#' Poverty Probability Index (PPI) lookup table for Mozambique -#' -#' @format A data frame with 15 columns and 101 rows: -#' \describe{ -#' \item{\code{score}}{PPI score} -#' \item{\code{nl100}}{National poverty line (100)} -#' \item{\code{nl150}}{National poverty line (150)} -#' \item{\code{nl200}}{National poverty line (200)} -#' \item{\code{ppp190}}{Below $1.90 per day purchasing power parity (2011)} -#' \item{\code{ppp320}}{Below $3.20 per day purchasing power parity (2011)} -#' \item{\code{ppp550}}{Below $5.50 per day purchasing power parity (2011)} -#' \item{\code{ppp800}}{Below $8.00 per day purchasing power parity (2011)} -#' \item{\code{ppp1100}}{Below $11.00 per day purchasing power parity (2011)} -#' \item{\code{ppp1500}}{Below $15.00 per day purchasing power parity (2011)} -#' \item{\code{ppp2170}}{Below $21.70 per day purchasing power parity (2011)} -#' \item{\code{percentile20}}{Below 20th percentile poverty line} -#' \item{\code{percentile40}}{Below 40th percentile poverty line} -#' \item{\code{percentile60}}{Below 50th percentile poverty line} -#' \item{\code{percentile80}}{Below 60th percentile poverty line} -#' } -#' -#' @examples -#' # Access Mozambique PPI table -#' ppiMOZ2019 -#' -#' # Given a specific PPI score (from 0 - 100), get the row of poverty -#' # probabilities from PPI table it corresponds to -#' ppiScore <- 50 -#' ppiMOZ2019[ppiMOZ2019$score == ppiScore, ] -#' -#' # Use subset() function to get the row of poverty probabilities corresponding -#' # to specific PPI score -#' ppiScore <- 50 -#' subset(ppiMOZ2019, score == ppiScore) -#' -#' # Given a specific PPI score (from 0 - 100), get a poverty probability -#' # based on a specific poverty definition. In this example, the national -#' # poverty line is used -#' ppiScore <- 50 -#' ppiMOZ2019[ppiMOZ2019$score == ppiScore, "nl100"] -#' -#' @source \url{https://www.povertyindex.org} -#' -# -################################################################################ -"ppiMOZ2019" - ################################################################################ # #' Poverty Probability Index (PPI) lookup table for Myanmar diff --git a/R/sysdata.rda b/R/sysdata.rda index d140ef9a..29fc639f 100644 Binary files a/R/sysdata.rda and b/R/sysdata.rda differ diff --git a/README.Rmd b/README.Rmd index d86c1cd2..5aabb5d1 100644 --- a/README.Rmd +++ b/README.Rmd @@ -45,8 +45,10 @@ You can install the current development version from the [Katilingban R-universe ```{r gh-installation, eval = FALSE} install.packages( - "ppitables", - c('https://nutriverse.r-universe.dev', 'https://cloud.r-project.org') + "pakete", + repos = c( + 'https://nutriverse.r-universe.dev', 'https://cloud.r-project.org' + ) ) ``` @@ -73,358 +75,462 @@ Following are the available PPI country tables from the `ppitables` package. Thi ### List of PPI country tables -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | **PPI Country | **Description** | **PPI Release | -| | Table Name** | | Year** | -+====:+=================+=====================================================+:===============:+ -| 1. | `ppiAFG2012` | PPI for Afghanistan based on 2007/8 National Risk | 2012 | -| | | and Vulnerability Survey (NRVA) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 2. | `ppiAGO2015` | PPI for Angola based on the 2008/2009 Household | 2015 | -| | | Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 3. | `ppiBEN2012` | PPI for Benin based on 2010 data | 2012 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiBEN2022_11q`| PPI for Benin based on 2018/9 Enquete Harmonisée sur| 2022 | -| | | le Conditions de Vie des Ménages (EHCVM) and using | | -| | | an 11 question score card | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiBEN2022_6q` | PPI for Benin based on 2018/9 Enquete Harmonisée sur| 2022 | -| | | le Conditions de Vie des Ménages (EHCVM) and using | | -| | | a 6 question score card | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 4. | `ppiBFA2011` | PPI for Burkina Faso using Burkina Faso's 2003 | 2011 | -| | | Household Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiBFA2014` | PPI for Burkina Faso using Burkina Faso's 2014 | 2017 | -| | | Permanent Multi-Sector Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiBFA2017` | PPI for Burkina Faso using Burkina Faso’s 2014 | 2017 | -| | | Enquête Multisectorielle Continue (EMC) based on | | -| | | IPA's new approach to PPI calculation | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiBFA2023` | PPI for Burkina FASO based on data from 2018 Enquête| 2023 | -| | | Harmonisée sur le Conditions de Vie des Ménages | | -| | | (EHCVM) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 5. | `ppiBGD2013` | PPI for Bangladesh using Bangaldesh's 2010 HIES | 2013 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 6. | `ppiBOL2015` | PPI for Bolivia using Bolivia’s 2013 Household | 2015 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiBOL2023` | PPI for Bolivia using data from Encuesta de Hogares | 2023 | -| | | 2020 | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 7. | `ppiBRA2010` | PPI for Brazil based on the 2008 PNAD | 2010 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 8. | `ppiCIV2013` | PPI for Ivory Coast using the Ivory Coast's 2008 | 2013 | -| | | Household Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiCIV2018` | PPI for Ivory Coast using the Ivory Coast's 2015 | 2018 | -| | | Enquête sur le Niveau de Vie des Ménages | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 9. | `ppiCMR2013` | PPI for Cameroon using Cameroon’s 2007 Household | 2013 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 10. | `ppiCOL2012` | PPI for Colombia based on Colombia’s 2009 Encuesta | 2012 | -| | | Integrada de Hogares. This table uses the old | | -| | | poverty definitions. | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiCOL2012_a` | PPI for Colombia based on Colombia's 2009 Encuesta | 2012 | -| | | Integrada de Hogares. This table uses the new | | -| | | poverty definitions for Colombia. | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiCOL2018` | PPI for Colombia based on Colombia's 2016 Gran | 2018 | -| | | Encuesta Integrada de Hogares (GEIH) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 11. | `ppiDOM2010` | PPI for Dominican Republic based on the 2007 | 2010 | -| | | Encuesta Nacional de Ingresos y Gastos de los | | -| | | Hogares (ENIGH) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiDOM2018` | PPI for Dominican Republic based on the 2016 | 2018 | -| | | Encuesta Nacional de Fuerza de Trabajo (ENFT) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 12. | `ppiECU2015` | PPI for Ecuador based on the 2013 Living Standards | 2015 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiECU2022` | PPI for Ecuador based on data from the Encuesta | 2022 | -| | | Nacional de Empleo, Desempleo y Subempleo (ENEMDU) | | -| | | from 2019, 2020 and 2021 | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 13. | `ppiEGY2010` | PPI for Egypt based on the 2004/5 HIECS | 2010 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 14. | `ppiETH2016` | PPI for Ethiopia based on Ethiopia’s 2010/11 | 2016 | -| | | Household Consumption and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiETH2023` | PPI for Ethiopia based on data from the | 2023 | -| | | Socioeconomic Survey 2018/2019" | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 15. | `ppiFJI2014` | PPI for Fiji based on Fiji’s 2008/9 Household Income| 2014 | -| | | and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 16. | `ppiGHA2015` | PPI for Ghana based on Ghana’s 2012/13 Living | 2015 | -| | | Standards Survey using legacy poverty lines | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiGHA2015_a` | PPI for Ghana based on Ghana’s 2012/13 Living | 2015 | -| | | Standards Survey using the new-definition poverty | | -| | | lines deflated with Ghana's CPI | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiGHA2015_b` | PPI for Ghana based on Ghana’s 2012/13 Living | 2015 | -| | | Standards Survey using the new-definition poverty | | -| | | lines deflated with the change in 100% of national | | -| | | poverty line | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiGHA2019` | PPI for Ghana based on Ghana's 2016/2017 Living | 2019 | -| | | Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 17. | `ppiGTM2016` | PPI for Guatemala based on Guatemala’s 2014 | 2016 | -| | | Household Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiGTM2023` | PPI for Guatemala based on data from Encuesta | 2023 | -| | | Nacional de Empleo e Ingresos of 2021 | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 18. | `ppiHND2010` | PPI for Honduras based on the 2007 EPHPM | 2010 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiHND2023` | PPI for Honduras based on data from the Encuesta | 2023 | -| | | Permanente de Hogares de Propósitos Múltiples | | -| | | (EPHPM) 2019 | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 19. | `ppiHTI2016` | PPI for Haiti based on Haiti’s 2012 Post-Earthquake | 2016 | -| | | Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 20. | `ppiIDN2012` | PPI for Indonesia based on data from 2010 using | 2012 | -| | | legacy poverty lines | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiIDN2012_a` | PPI for Indonesia based on data from 2010 using new | 2012 | -| | | definition poverty lines | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiIDN2020` | PPI for Indonesia based on data from Indonesia's | 2020 | -| | | SUSENA 2016 | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiIDN2023` | PPI for Indonesia based on data from the 2022 | 2023 | -| | | National Socioeconomic Survey (SUSENAS) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 21. | `ppiIND2016_r59`| PPI for India using India’s 2011/12 Socio-Economic | 2016 | -| | | using the R59 legacy poverty lines using MRP | | -| | | consumption | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiIND2016_r62`| PPI for India using India’s 2011/12 Socio-Economic | 2016 | -| | | using the R59 legacy poverty lines using MRP | | -| | | consumption | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiIND2016_r66`| PPI for India using India’s 2011/12 Socio-Economic | 2016 | -| | | using the R66 legacy poverty lines using MRP | | -| | | consumption | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiIND2016_r68`| PPI for India using India’s 2011/12 Socio-Economic | 2016 | -| | | using the R68 new poverty lines using MRP | | -| | | consumption | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 22. | `ppiJOR2010` | PPI for Jordan using Jordan’s 2006 Household Income | 2010 | -| | | and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 23. | `ppiKEN2011` | PPI for Kenya using Kenya’s 2005/06 Integrated | 2011 | -| | | Household Budget Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiKEN2018` | PPI for Kenya using Kenya's 2015 Integrated | 2018 | -| | | Household Budget Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 24. | `ppiKGZ2015` | PPI for Kyrgyzstan Kyrgyz Republic’s 2012 Integrated| 2015 | -| | | Household Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 25. | `ppiKHM2105` | PPI for Cambodia using Cambodia’s 2011 | 2015 | -| | | Socio-Economic Survey based using legacy poverty | | -| | | lines | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiKHM2015_gov`| PPI for Cambodia using Cambodia’s 2011 | 2015 | -| | | Socio-Economic Survey based using government | | -| | | definition poverty lines | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiKHM2015_wb` | PPI for Cambodia using Cambodia’s 2011 | 2015 | -| | | Socio-Economic Survey based using World Bank | | -| | | definition poverty lines | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiKHM2023` | PPI for Cambodia using data from 2020 Living | 2023 | -| | | Standards Measurement Study - Plus (LSMS+) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 26. | `ppiLKA2016` | PPI for Sri Lanka using Sri Lanka’s 2012/13 | 2016 | -| | | Household Income and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 27. | `ppiMAR2013` | PPI for Morocco based on Morocco’s 2007 Households | 2013 | -| | | Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 28. | `ppiMDG2015` | PPI for Madagascar based on Madagascar’s 2010 | 2015 | -| | | Periodic Household Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 29. | `ppiMEX2017` | PPI for Mexico based on Mexico's Encuesta Nacional | 2017 | -| | | de Ingresos y Gastos de los Hogares de 2014 using | | -| | | legacy definitions of poverty | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMEX2017_a` | PPI for Mexico based on Mexico's Encuesta Nacional | 2017 | -| | | de Ingresos y Gastos de los Hogares de 2014 using | | -| | | new definitions of poverty | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 30. | `ppiMLI2010` | PPI for Mali based on Mali's 2001 Poverty Evaluation| 2010 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 31. | `ppiMMR2012` | PPI for Myanmar based on Myanmar’s 2009/10 | 2012 | -| | | Integrated Household Living Conditions Assessment | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMMR2019` | PPI for Myanmar based on Myanmar's 2015 Poverty and | 2019 | -| | | Living Conditions Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 32. | `ppiMNG2016` | PPI for Mongolia based on Mongolia’s 2014 Household | 2016 | -| | | Socio-Economic Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 33. | `ppiMOZ2013` | PPI for Mozambique based on 2008/9 Household Budget | 2013 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMOZ2019` | PPI for Mozambique based on 2014 Inquerito Sobre | 2019 | -| | | Orcamento Familiar (IOF) Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 34. | `ppiMWI2015` | PPI for Malawi based on Malawi's 2010/11 Integrated | 2015 | -| | | Household Survey using legacy poverty definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMWI2015_gov`| PPI for Malawi based on Malawi's 2010/11 Integrated | 2015 | -| | | Household Survey using government poverty | | -| | | definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMWI2015_pbm`| PPI for Malawi based on Malawi's 2010/11 Integrated | 2015 | -| | | Household Survey using PBM poverty definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMWI2020` | PPI for Malawi based on Malawi's 2016-2017 Fourth | 2020 | -| | | Integrated Household Survey (IHS4) using new PPI | | -| | | definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiMWI2023` | PPI for Malawi based on data from the Fifth | 2023 | -| | | Integrated Household Survey 2019 | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 35. | `ppiNAM2013` | PPI for Namibia based on Namibia’s 2009/10 Household| 2013 | -| | | Income and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 36. | `ppiNER2013` | PPI for Niger based on Niger’s 2007/8 National | 2013 | -| | | Household Budget and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 37. | `ppiNGA2015` | PPI for Nigeria based on Nigeria’s 2012/13 General | 2015 | -| | | Household Panel Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 38. | `ppiNIC2013` | PPI for Nicaragua based on Nicaragua’s 2009 Living | 2013 | -| | | Standards Measurement Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 39. | `ppiNPL2013` | PPI for Nepal using legacy poverty definition lines | 2013 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiNPL2013_a` | PPI for Nepal using new poverty definition lines | 2013 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 40. | `ppiPAK2009` | PPI for Pakistan using Pakistan 2005/6 Social and | 2009 | -| | | Living Standards Measurement Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 41. | `ppiPER2012` | PPI for Peru based on Peru’s 2010 National Household| 2012 | -| | | Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiPER2018` | PPI for Peru based on Peru's 2016 Encuesta Nacional | 2018 | -| | | de Hogares sobre Condiciones de Vida y Pobreza | | -| | | (ENAHO) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 42. | `ppiPHL2014` | PPI for the Philippines based on Philippines' 2009 | 2014 | -| | | FIES/LFS. | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiPHL2018` | PPI for the Philippines based on Philippines' 2015 | 2018 | -| | | Family Income and Expenditure Survey (FIES) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiPHL2023` | PPI for the Philippines based on data from the 2018 | 2023 | -| | | Family Income and Expenditure Survey (FIES) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 43. | `ppiPNG2023` | PPI for Papua New Guinea based on data from | 2023 | -| | | 2016-2018 Demographic and Health Survey (DHS) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 44. | `ppiPRY2012` | PPI for Paraguay based on Paraguay’s 2011 EPH | 2012 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 45. | `ppiPSE2014` | PPI for Palestine based on Palestine's 2011 | 2014 | -| | | Expenditure and Consumption Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 46. | `ppiROU2009` | PPI for Romania based on the 2007 HBS | 2009 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 47. | `ppiRUS2010` | PPI for Russia based on 2007 HBS | 2010 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 48. | `ppiRWA2016` | PPI for Rwanda based on Rwanda’s 2010/11 Integrated | 2016 | -| | | Household Living Standards Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiRWA2019` | PPI for Rwanda based on Rwanda's 2016/2017 | 2019 | -| | | Integrated Household Living Conditions Survey | | -| | | (EICV5) produced by the National Institute of | | -| | | Statistics of Rwanda (NISR) and the Ministry of | | -| | | Finance and Planning | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 49. | `ppiSEN2009` | PPI for Senegal based on Senegal's 2005/6 Enquête de| 2009 | -| | | Suivi de la Pauvreté au Sénégal (ESPS) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiSEN2018` | PPI for Senegal based on Senegal's 2011 Enquête de | 2018 | -| | | Suivi de la Pauvreté au Sénégal (ESPS) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 50. | `ppiSLE2011` | PPI for Sierra Leone based on Sierra Leone's 2003/4 | 2011 | -| | | HIS | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 51. | `ppiSLV2010` | PPI for El Salvador based on the 2008 EHPM | 2010 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiSLV2021` | PPI for El Salvador based on data from 2019 Encuesta| 2021 | -| | | de Hogares de Propósitos Múltiples | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 52. | `ppiSYR2010` | PPI for Syria based on Syria's 2006/7 Household | 2010 | -| | | Income and Expenditure Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 53. | `ppiTJK2015` | PPI for Tajikistan based on 2007 data | 2015 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 54. | `ppiTLS2013` | PPI for Timor Leste based on Timor-Leste’s 2007 | 2013 | -| | | Survey of Living Standards | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 55. | `ppiTZA2016` | PPI for Tanzania based on Tanzania’s 2011/12 | 2016 | -| | | Household Budget Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiTZA2022` | PPI for Tanzania based on Tanzania's 2017/2018 | 2022 | -| | | Household Budget Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 56. | `ppiTGO2018` | PPI for Togo based on Togo’s 2015 Questionnaire des | 2018 | -| | | Indicateurs de Base du Bien-être (QUIBB) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiTGO2023` | PPI for Togo based on data from the 2018 Enquête | 2023 | -| | | Harmonisée sur le Conditions de Vie des Ménages | | -| | | (EHCVM) | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 57. | `ppiUGA2015` | PPI for Uganda based on Uganda's 2012/13 National | 2015 | -| | | Household Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiUGA2022` | PPI for Uganda based on Uganda's 2020 National | 2022 | -| | | Household Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 58. | `ppiVNM2009` | PPI for Vietnam based on the 2006 VHLSS | 2009 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiVNM2023` | PPI for Vietnam based on data from the 2021 Multiple| 2023 | -| | | Indicator Cluster Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 59. | `ppiYEM2009` | PPI for Yemen based on 2005/06 HBS | 2009 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 60. | `ppiZAF2009` | PPI for South Africa based on the 2005/6 IES | 2009 | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiZAF2023` | PPI for South Africa based on data from the 2019 | 2023 | -| | | General Household Survey | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| 61. | `ppiZMB2013_got`| PPI for Zambia based on Zambia's 2010 Living | 2013 | -| | | Conditions Monitoring Survey (LCMS) using Göttingen | | -| | | poverty definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiZMB2013_cso`| PPI for Zambia based on Zambia's 2010 Living | 2013 | -| | | Conditions Monitoring Survey (LCMS) using CSO | | -| | | poverty definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiZMB2017` | PPI for Zambia based on Zambia's 2015 Living | 2017 | -| | | Conditions Monitoring Survey (LCMS) using legacy | | -| | | poverty definitions | | -+-----+-----------------+-----------------------------------------------------+-----------------+ -| | `ppiZMB2017_a` | PPI for Zambia based on Zambia’s 2015 Living | 2017 | -| | | Conditions Monitoring Survey (LCMS) using new PPI | | -| | | calculation approach | | -+-----+-----------------+-----------------------------------------------------+-----------------+ ++-----+---------+--------------------------------------------+-----------------+ +| | **PPI Country | **Description** | **PPI Release | +| | Table Name** | | Year** | +| | Name** | | | ++====:+=================+====================================+:===============:+ +| 1. | `ppiAFG2012` | PPI for Afghanistan based on | 2012 | +| | | 2007/8 National Risk and | | +| | | Vulnerability Survey (NRVA) | | ++-----+-----------------+------------------------------------+-----------------+ +| 2. | `ppiAGO2015` | PPI for Angola based on the | 2015 | +| | | 2008/2009 Household Living | | +| | | Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 3. | `ppiBEN2012` | PPI for Benin based on 2010 data | 2012 | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiBEN2022_11q`| PPI for Benin based on 2018/9 | 2022 | +| | | Enquete Harmonisée sur le | | +| | | Conditions de Vie des Ménages | | +| | | (EHCVM) and using an 11 question | | +| | | score card | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiBEN2022_6q` | PPI for Benin based on 2018/9 | 2022 | +| | | Enquete Harmonisée sur le | | +| | | Conditions de Vie des Ménages | | +| | | (EHCVM) and using a 6 question | | +| | | score card | | ++-----+-----------------+------------------------------------+-----------------+ +| 4. | `ppiBFA2011` | PPI for Burkina Faso using Burkina | 2011 | +| | | Faso's 2003 Household Living | | +| | | Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiBFA2014` | PPI for Burkina Faso using Burkina | 2014 | +| | | Faso's Permanent Multi-Sector | | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiBFA2017` | PPI for Burkina Faso using Burkina | 2017 | +| | | Faso’s Enquête Multisectorielle | | +| | | Continue (EMC) based on IPA's new | | +| | | approach to PPI calculation | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiBFA2023` | PPI for Burkina FASO based on data | 2023 | +| | | from 2018 Enquête Harmonisée sur | | +| | | le Conditions de Vie des Ménages | | +| | | (EHCVM) | | ++-----+-----------------+------------------------------------+-----------------+ +| 5. | `ppiBGD2013` | PPI for Bangladesh using the | 2013 | +| | | Bangaldesh's 2010 HIES Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 6. | `ppiBOL2015` | PPI for Bolivia using Bolivia’s | 2015 | +| | | 2013 Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiBOL2023` | PPI for Bolivia using data from | 2023 | +| | | Encuesta de Hogares 2020 | | ++-----+-----------------+------------------------------------+-----------------+ +| 7. | `ppiBRA2010` | PPI for Brazil based on the 2008 | 2010 | +| | | PNAD | | ++-----+-----------------+------------------------------------+-----------------+ +| 8. | `ppiCIV2013` | PPI for Ivory Coast using the | 2013 | +| | | Ivory Coast's 2008 Household | | +| | | Living Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiCIV2018` | PPI for Ivory Coast using the | 2018 | +| | | Ivory Coast's 2015 Enquête sur le | | +| | | Niveau de Vie des Ménages | | ++-----+-----------------+------------------------------------+-----------------+ +| 9. | `ppiCMR2013` | PPI for Cameroon using Cameroon’s | 2013 | +| | | 2007 Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 10. | `ppiCOL2012` | PPI for Colombia based on | 2012 | +| | | Colombia’s 2009 Encuesta Integrada | | +| | | de Hogares. This uses the old | | +| | | poverty definitions. | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiCOL2012_a` | PPI for Colombia based on | 2012 | +| | | Colombia's 2009 Encuesta Integrada | | +| | | de Hogares. This table uses the | | +| | | new poverty definitions for | | +| | | Colombia. | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiCOL2018` | PPI for Colombia based on | 2018 | +| | | Colombia's 2016 Gran Encuesta | | +| | | Integrada de Hogares (GEIH) | | ++-----+-----------------+------------------------------------+-----------------+ +| 11. | `ppiDOM2010` | PPI for Dominican Republic based | 2010 | +| | | on the 2007 Encuesta Nacional de | | +| | | Ingresos y Gastos de los Hogares | | +| | | (ENIGH) | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiDOM2018` | PPI for Dominican Republic | 2018 | +| | | based on the 2016 Encuesta | | +| | | Nacional de Fuerza de Trabajo | | +| | | (ENFT) | | ++-----+-----------------+------------------------------------+-----------------+ +| 12. | `ppiECU2015` | PPI for Ecuador based on the | 2015 | +| | | 2013 Living Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiECU2022` | PPI for Ecuador based on data from | 2022 | +| | | the Encuesta Nacional de Empleo, | | +| | | Desempleo y Subempleo (ENEMDU) | | +| | | from 2019, 2020 and 2021 | | ++-----+-----------------+------------------------------------+-----------------+ +| 13. | `ppiEGY2010` | PPI for Egypt based on the 2004/5 | 2010 | +| | | HIECS | | ++-----+-----------------+------------------------------------+-----------------+ +| 14. | `ppiETH2016` | PPI for Ethiopia based on | 2016 | +| | | Ethiopia’s 2010/11 Household | | +| | | Consumption and Expenditure Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiETH2023` | PPI for Ethiopia based on data | 2023 | +| | | from the Socioeconomic Survey | | +| | | 2018/2019 | | ++-----+-----------------+------------------------------------+-----------------+ +| 15. | `ppiFJI2014` | PPI for Fiji based on Fiji’s | 2014 | +| | | 2008/9 Household Income and | | +| | | Expenditure Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 16. | `ppiGHA2015` | PPI for Ghana based on Ghana’s | 2015 | +| | | 2012/13 Living Standards Survey | | +| | | using legacy poverty lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiGHA2015_a` | PPI for Ghana based on Ghana’s | 2015 | +| | | 2012/13 Living Standards Survey | | +| | | using the new-definition poverty | | +| | | lines deflated with Ghana's CPI | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiGHA2015_b` | PPI for Ghana based on Ghana’s | 2015 | +| | | 2012/13 Living Standards Survey | | +| | | using the new-definition poverty | | +| | | lines deflated with the change in | | +| | | 100% of national poverty line | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiGHA2019` | PPI for Ghana based on Ghana's | 2019 | +| | | 2016/2017 Living Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 17. | `ppiGTM2016` | PPI for Guatemala based on | 2016 | +| | | Guatemala’s 2014 Household Living | | +| | | Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiGTM2023` | PPI for Guatemala based on data | 2023 | +| | | from Encuesta Nacional de Empleo | | +| | | e Ingresos of 2021 | | ++-----+-----------------+------------------------------------+-----------------+ +| 18. | `ppiHND2010` | PPI for Honduras based on the 2007 | 2010 | +| | | EPHPM | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiHND2023` | PPI for Honduras based on data | 2023 | +| | | from the Encuesta Permanente de | | +| | | Hogares de Propósitos Múltiples | | +| | | (EPHPM) 2019 | | ++-----+-----------------+------------------------------------+-----------------+ +| 19. | `ppiHTI2016` | PPI for Haiti based on Haiti’s | 2016 | +| | | 2012 Post-Earthquake Living | | +| | | Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 20. | `ppiIDN2012` | PPI for Indonesia based on data | 2012 | +| | | from 2010 using legacy poverty | | +| | | lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiIDN2012_a` | PPI for Indonesia based on data | 2012 | +| | | from 2010 using new definition | | +| | | poverty lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiIDN2020` | PPI for Indonesia based on data | 2020 | +| | | from Indonesia's SUSENA 2016 | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiIDN2023` | PPI for Indonesia based on data | 2023 | +| | | from the 2022 National | | +| | | Socioeconomic Survey (SUSENAS) | | ++-----+-----------------+------------------------------------+-----------------+ +| 21. | `ppiIND2016_r59`| PPI for India using India’s | 2016 | +| | | 2011/12 Socio-Economic using the | | +| | | R59 legacy poverty lines using MRP | | +| | | consumption | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiIND2016_r62`| PPI for India using India’s | 2016 | +| | | 2011/12 Socio-Economic using the | | +| | | R59 legacy poverty lines using MRP | | +| | | consumption | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiIND2016_r66`| PPI for India using India’s | 2016 | +| | | 2011/12 Socio-Economic using the | | +| | | R66 legacy poverty lines using MRP | | +| | | consumption | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiIND2016_r68`| PPI for India using India’s | 2016 | +| | | 2011/12 Socio-Economic using the | | +| | | R68 new poverty lines using MRP | | +| | | consumption | | ++-----+-----------------+------------------------------------+-----------------+ +| 22. | `ppiJOR2010` | PPI for Jordan using Jordan’s 2006 | 2010 | +| | | Household Income and Expenditure | | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 23. | `ppiKEN2011` | PPI for Kenya using Kenya’s | 2011 | +| | | 2005/06 Integrated Household | | +| | | Budget Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiKEN2018` | PPI for Kenya using Kenya's 2015 | 2018 | +| | | Integrated Household Budget Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 24. | `ppiKGZ2015` | PPI for Kyrgyzstan Kyrgyz | 2015 | +| | | Republic’s 2012 Integrated | | +| | | Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 25. | `ppiKHM2105` | PPI for Cambodia using Cambodia’s | 2015 | +| | | 2011 Socio-Economic Survey based | | +| | | using legacy poverty lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiKHM2015_gov`| PPI for Cambodia using Cambodia’s | 2015 | +| | | 2011 Socio-Economic Survey based | | +| | | using government definition | | +| | | poverty lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiKHM2015_wb` | PPI for Cambodia using Cambodia’s | 2015 | +| | | 2011 Socio-Economic Survey based | | +| | | using World Bank definition | | +| | | poverty lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiKHM2023` | PPI for Cambodia using data from | 2023 | +| | | 2020 Living Standards Measurement | | +| | | Study - Plus (LSMS+) | | ++-----+-----------------+------------------------------------+-----------------+ +| 26. | `ppiLKA2016` | PPI for Sri Lanka using Sri Lanka’s| 2016 | +| | | 2012/13 Household Income and | | +| | | Expenditure Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 27. | `ppiMAR2013` | PPI for Morocco based on Morocco’s | 2013 | +| | | 2007 Households Living Standards | | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 28. | `ppiMDG2015` | PPI for Madagascar based on | 2015 | +| | | Madagascar’s 2010 Periodic | | +| | | Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 29. | `ppiMEX2017` | PPI for Mexico based on Mexico's | 2017 | +| | | Encuesta Nacional de Ingresos y | | +| | | Gastos de los Hogares de 2014 | | +| | | using legacy definitions of | | +| | | poverty | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMEX2017_a` | PPI for Mexico based on Mexico's | 2017 | +| | | Encuesta Nacional de Ingresos y | | +| | | Gastos de los Hogares de 2014 using| | +| | | new definitions of poverty | | ++-----+-----------------+------------------------------------+-----------------+ +| 30. | `ppiMLI2010` | PPI for Mali based on Mali's 2001 | 2010 | +| | | Poverty Evaluation Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 31. | `ppiMMR2012` | PPI for Myanmar based on Myanmar’s | 2012 | +| | | 2009/10 Integrated Household | | +| | | Living Conditions Assessment | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMMR2019` | PPI for Myanmar based on Myanmar's | 2019 | +| | | 2015 Poverty and Living Conditions | | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 32. | `ppiMNG2016` | PPI for Mongolia based on | 2016 | +| | | Mongolia’s 2014 Household | | +| | | Socio-Economic Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 33. | `ppiMOZ2013` | PPI for Mozambique based on 2008/9 | 2013 | +| | | Household Budget Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMOZ2019` | PPI for Mozambique based on 2014 | 2019 | +| | | Inquerito Sobre Orcamento Familiar | | +| | | (IOF) Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMOZ2024` | PPI for Mozambique based on data | 2024 | +| | | from the 2022 Demographic and | | +| | | Health Survey (DHS) | | ++-----+-----------------+------------------------------------+-----------------+ +| 34. | `ppiMWI2015` | PPI for Malawi based on Malawi's | 2015 | +| | | 2010/11 Integrated Household | | +| | | Survey using legacy poverty | | +| | | definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMWI2015_gov`| PPI for Malawi based on Malawi's | 2015 | +| | | 2010/11 Integrated Household | | +| | | Survey using government poverty | | +| | | definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMWI2015_pbm`| PPI for Malawi based on Malawi's | 2015 | +| | | 2010/11 Integrated Household | | +| | | Survey using PBM poverty | | +| | | definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMWI2020` | PPI for Malawi based on Malawi's | 2020 | +| | | 2016-2017 Fourth Integrated | | +| | | Household Survey (IHS4) using new | | +| | | PPI definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiMWI2023` | PPI for Malawi based on data from | 2023 | +| | | the Fifth Integrated Household | | +| | | Survey 2019 | | ++-----+-----------------+------------------------------------+-----------------+ +| 35. | `ppiNAM2013` | PPI for Namibia based on Namibia’s | 2013 | +| | | 2009/10 Household Income and | | +| | | Expenditure Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 36. | `ppiNER2013` | PPI for Niger based on Niger’s | 2013 | +| | | 2007/8 National Household Budget | | +| | | and Expenditure Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 37. | `ppiNGA2015` | PPI for Nigeria based on Nigeria’s | 2015 | +| | | 2012/13 General Household Panel | | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 38. | `ppiNIC2013` | PPI for Nicaragua based on | 2013 | +| | | Nicaragua’s 2009 Living Standards | | +| | | Measurement Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 39. | `ppiNPL2013` | PPI for Nepal using legacy | 2013 | +| | | poverty definition lines | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiNPL2013_a` | PPI for Nepal using new poverty | 2013 | +| | | definition lines | | ++-----+-----------------+------------------------------------+-----------------+ +| 40. | `ppiPAK2009` | PPI for Pakistan using Pakistan | 2009 | +| | | 2005/6 Social and Living Standards | | +| | | Measurement Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 41. | `ppiPER2012` | PPI for Peru based on Peru’s 2010 | 2012 | +| | | National Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiPER2018` | PPI for Peru based on Peru's 2016 | 2018 | +| | | Encuesta Nacional de Hogares sobre | | +| | | Condiciones de Vida y Pobreza | | +| | | (ENAHO) | | ++-----+-----------------+------------------------------------+-----------------+ +| 42. | `ppiPHL2014` | PPI for the Philippines based on | 2014 | +| | | Philippines' 2009 FIES/LFS. | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiPHL2018` | PPI for the Philippines based on | 2018 | +| | | Philippines' 2015 Family Income | | +| | | and Expenditure Survey (FIES) | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiPHL2023` | PPI for the Philippines based on | 2023 | +| | | data from the 2018 Family Income | | +| | | and Expenditure Survey (FIES) | | ++-----+-----------------+------------------------------------+-----------------+ +| 43. | `ppiPNG2023` | PPI for Papua New Guinea based on | 2023 | +| | | data from 2016-2018 Demographic | | +| | | and Health Survey (DHS) | | ++-----+-----------------+------------------------------------+-----------------+ +| 44. | `ppiPRY2012` | PPI for Paraguay based on | 2012 | +| | | Paraguay’s 2011 EPH | | ++-----+-----------------+------------------------------------+-----------------+ +| 45. | `ppiPSE2014` | PPI for Palestine based on | 2014 | +| | | Palestine's 2011 Expenditure and | | +| | | Consumption Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 46. | `ppiROU2009` | PPI for Romania based on the 2007 | 2009 | +| | | HBS | | ++-----+-----------------+------------------------------------+-----------------+ +| 47. | `ppiRUS2010` | PPI for Russia based on 2007 HBS | 2010 | ++-----+-----------------+------------------------------------+-----------------+ +| 48. | `ppiRWA2016` | PPI for Rwanda based on Rwanda’s | 2016 | +| | | 2010/11 Integrated Household Living| | +| | | Standards Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiRWA2019` | PPI for Rwanda based on Rwanda's | 2019 | +| | | 2016/2017 Integrated Household | | +| | | Living Conditions Survey (EICV5) | | +| | | produced by the National Institute | | +| | | of Statistics of Rwanda (NISR) | | +| | | and the Ministry of Finance and | | +| | | Planning | | ++-----+-----------------+------------------------------------+-----------------+ +| 49. | `ppiSEN2009` | PPI for Senegal based on Senegal's | 2009 | +| | | 2005/6 Enquête de Suivi de la | | +| | | Pauvreté au Sénégal (ESPS) | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiSEN2018` | PPI for Senegal based on Senegal's | 2018 | +| | | 2011 Enquête de Suivi de la | | +| | | Pauvreté au Sénégal (ESPS) | | ++-----+-----------------+------------------------------------+-----------------+ +| 50. | `ppiSLE2011` | PPI for Sierra Leone based on | 2011 | +| | | Sierra Leone's 2003/4 HIS | | ++-----+-----------------+------------------------------------+-----------------+ +| 51. | `ppiSLV2010` | PPI for El Salvador based on the | 2010 | +| | | 2008 EHPM | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiSLV2021` | PPI for El Salvador based on data | 2021 | +| | | from 2019 Encuesta de Hogares de | | +| | | Propósitos Múltiples | | ++-----+-----------------+------------------------------------+-----------------+ +| 52. | `ppiSYR2010` | PPI for Syria based on Syria's | 2010 | +| | | 2006/7 Household Income and | | +| | | Expenditure Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 53. | `ppiTJK2015` | PPI for Tajikistan based on 2007 | 2015 | +| | | data | | ++-----+-----------------+------------------------------------+-----------------+ +| 54. | `ppiTLS2013` | PPI for Timor Leste based on | 2013 | +| | | Timor-Leste’s 2007 Survey of | | +| | | Living Standards | | ++-----+-----------------+------------------------------------+-----------------+ +| 55. | `ppiTZA2016` | PPI for Tanzania based on | 2016 | +| | | Tanzania’s 2011/12 Household | | +| | | Budget Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiTZA2022` | PPI for Tanzania based on | 2022 | +| | | Tanzania's 2017/2018 Household | | +| | | Budget Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 56. | `ppiTGO2018` | PPI for Togo based on Togo’s 2015 | 2018 | +| | | Questionnaire des Indicateurs de | | +| | | Base du Bien-être (QUIBB) | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiTGO2023` | PPI for Togo based on data from | 2023 | +| | | the 2018 Enquête Harmonisée sur le | | +| | | Conditions de Vie des Ménages | | +| | | (EHCVM) | | ++-----+-----------------+------------------------------------+-----------------+ +| 57. | `ppiUGA2015` | PPI for Uganda based on Uganda's | 2015 | +| | | 2012/13 National Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiUGA2022` | PPI for Uganda based on Uganda's | 2022 | +| | | 2020 National Household Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 58. | `ppiVNM2009` | PPI for Vietnam based on the 2006 | 2009 | +| | | VHLSS | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiVNM2023` | PPI for Vietnam based on data from | 2023 | +| | | the 2021 Multiple Indicator Cluster| | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 59. | `ppiYEM2009` | PPI for Yemen based on 2005/06 HBS | 2009 | ++-----+-----------------+------------------------------------+-----------------+ +| 60. | `ppiZAF2009` | PPI for South Africa based on the | 2009 | +| | | 2005/6 IES | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiZAF2023` | PPI for South Africa based on data | 2023 | +| | | from the 2019 General Household | | +| | | Survey | | ++-----+-----------------+------------------------------------+-----------------+ +| 61. | `ppiZMB2013_got`| PPI for Zambia based on Zambia's | 2013 | +| | | 2010 Living Conditions Monitoring | | +| | | Survey (LCMS) using Göttingen | | +| | | poverty definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiZMB2013_cso`| PPI for Zambia based on Zambia's | 2013 | +| | | 2010 Living Conditions Monitoring | | +| | | Survey (LCMS) using CSO | | +| | | poverty definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiZMB2017` | PPI for Zambia based on Zambia's | 2017 | +| | | 2015 Living Conditions Monitoring | | +| | | Survey (LCMS) using legacy | | +| | | poverty definitions | | ++-----+-----------------+------------------------------------+-----------------+ +| | `ppiZMB2017_a` | PPI for Zambia based on Zambia’s | 2017 | +| | | 2015 Living Conditions Monitoring | | +| | | Survey (LCMS) using new PPI | | +| | | calculation approach | | ++-----+-----------------+------------------------------------+-----------------+ This list of available PPI country tables can be retrieved in R using the `find_table()` function. View the complete list using the following command in R: diff --git a/README.md b/README.md index e44a1163..c5d73c4e 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,10 @@ R-universe](https://katilingban.r-universe.dev): ``` r install.packages( - "ppitables", - c('https://nutriverse.r-universe.dev', 'https://cloud.r-project.org') + "pakete", + repos = c( + 'https://nutriverse.r-universe.dev', 'https://cloud.r-project.org' + ) ) ``` @@ -90,15 +92,15 @@ PPI [site](https://www.povertyindex.org). ----++++ - + @@ -151,13 +153,13 @@ PPI [site](https://www.povertyindex.org). - - + + - + @@ -171,7 +173,7 @@ PPI [site](https://www.povertyindex.org).
  • - + @@ -223,7 +225,7 @@ PPI [site](https://www.povertyindex.org).
  • - + @@ -285,7 +287,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -549,6 +551,12 @@ PPI [site](https://www.povertyindex.org). + + + + + + @@ -556,31 +564,31 @@ PPI [site](https://www.povertyindex.org). - + - + - + - + - + @@ -588,7 +596,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -596,7 +604,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -604,7 +612,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -612,7 +620,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -620,13 +628,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -634,7 +642,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -642,13 +650,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -656,19 +664,19 @@ PPI [site](https://www.povertyindex.org). - + - + - + @@ -676,7 +684,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -684,7 +692,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -692,7 +700,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -700,7 +708,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -708,7 +716,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -716,13 +724,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -730,13 +738,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -744,7 +752,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -752,13 +760,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -766,7 +774,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -774,7 +782,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -782,7 +790,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -790,13 +798,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -804,13 +812,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -818,13 +826,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -832,13 +840,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -846,7 +854,7 @@ PPI [site](https://www.povertyindex.org). - + @@ -854,13 +862,13 @@ PPI [site](https://www.povertyindex.org). - + - + @@ -868,19 +876,19 @@ PPI [site](https://www.povertyindex.org). - + - + - + @@ -896,19 +904,20 @@ command in R: ``` r find_table() #> # A tibble: 110 × 7 -#> region country survey_year release_year description type filename -#> -#> 1 Asia Afghan… 2007 2012 PPI for Af… sps ppiAFG2… -#> 2 Africa Angola 2008 2015 PPI for An… sps ppiAGO2… -#> 3 Asia Bangla… 2010 2013 PPI for Ba… sps ppiBEN2… -#> 4 Africa Benin 2010 2012 PPI for Be… sps ppiBGD2… -#> 5 Africa Benin 2018 2022 PPI for Be… ipa ppiBEN2… -#> 6 Africa Benin 2018 2022 PPI for Be… ipa ppiBEN2… -#> 7 Latin American a… Bolivia 2013 2015 PPI for Bo… sps ppiBOL2… -#> 8 Latin American a… Bolivia 2020 2023 PPI for Bo… ipa ppiBOL2… -#> 9 Latin American a… Brazil 2008 2010 PPI for Br… sps ppiBRA2… -#> 10 Africa Burkin… 2003 2011 PPI for Bu… sps ppiBFA2… +#> region country survey_year release_year description type +#> +#> 1 Asia Afghan… 2007 2012 PPI for Af… sps +#> 2 Africa Angola 2008 2015 PPI for An… sps +#> 3 Asia Bangla… 2010 2013 PPI for Ba… sps +#> 4 Africa Benin 2010 2012 PPI for Be… sps +#> 5 Africa Benin 2018 2022 PPI for Be… ipa +#> 6 Africa Benin 2018 2022 PPI for Be… ipa +#> 7 Latin Amer… Bolivia 2013 2015 PPI for Bo… sps +#> 8 Latin Amer… Bolivia 2020 2023 PPI for Bo… ipa +#> 9 Latin Amer… Brazil 2008 2010 PPI for Br… sps +#> 10 Africa Burkin… 2003 2011 PPI for Bu… sps #> # ℹ 100 more rows +#> # ℹ 1 more variable: filename ``` View the list of PPI country tables for Africa using the following @@ -917,19 +926,20 @@ command in R: ``` r find_table(region = "Africa") #> # A tibble: 48 × 7 -#> region country survey_year release_year description type filename -#> -#> 1 Africa Angola 2008 2015 PPI for Angola … sps ppiAGO2… -#> 2 Africa Benin 2010 2012 PPI for Benin b… sps ppiBGD2… -#> 3 Africa Benin 2018 2022 PPI for Benin b… ipa ppiBEN2… -#> 4 Africa Benin 2018 2022 PPI for Benin b… ipa ppiBEN2… -#> 5 Africa Burkina Faso 2003 2011 PPI for Burkina… sps ppiBFA2… -#> 6 Africa Burkina Faso 2014 2017 PPI for Burkina… sps ppiBFA2… -#> 7 Africa Burkina Faso 2014 2017 PPI for Burkina… ipa ppiBFA2… -#> 8 Africa Burkina Faso 2018 2023 PPI for Burkina… ipa ppiBFA2… -#> 9 Africa Cameroon 2007 2013 PPI for Cameroo… sps ppiCMR2… -#> 10 Africa Cote d'Ivoire 2008 2013 PPI for Ivory C… sps ppiCIV2… +#> region country survey_year release_year description type +#> +#> 1 Africa Angola 2008 2015 PPI for An… sps +#> 2 Africa Benin 2010 2012 PPI for Be… sps +#> 3 Africa Benin 2018 2022 PPI for Be… ipa +#> 4 Africa Benin 2018 2022 PPI for Be… ipa +#> 5 Africa Burkina Faso 2003 2011 PPI for Bu… sps +#> 6 Africa Burkina Faso 2014 2017 PPI for Bu… sps +#> 7 Africa Burkina Faso 2014 2017 PPI for Bu… ipa +#> 8 Africa Burkina Faso 2018 2023 PPI for Bu… ipa +#> 9 Africa Cameroon 2007 2013 PPI for Ca… sps +#> 10 Africa Cote d'Ivoi… 2008 2013 PPI for Iv… sps #> # ℹ 38 more rows +#> # ℹ 1 more variable: filename ``` View the list of PPI country tables in Zambia using the the following @@ -938,12 +948,13 @@ command in R: ``` r find_table(country = "Zambia") #> # A tibble: 4 × 7 -#> region country survey_year release_year description type filename -#> -#> 1 Africa Zambia 2010 2013 PPI for Zambia based o… sps ppiZMB2… -#> 2 Africa Zambia 2010 2013 PPI for Zambia based o… sps ppiZMB2… -#> 3 Africa Zambia 2015 2017 PPI for Zambia based o… sps ppiZMB2… -#> 4 Africa Zambia 2015 2017 PPI for Zambia based o… ipa ppiZMB2… +#> region country survey_year release_year description type +#> +#> 1 Africa Zambia 2010 2013 PPI for Zambia b… sps +#> 2 Africa Zambia 2010 2013 PPI for Zambia b… sps +#> 3 Africa Zambia 2015 2017 PPI for Zambia b… sps +#> 4 Africa Zambia 2015 2017 PPI for Zambia b… ipa +#> # ℹ 1 more variable: filename ``` To extract the actual PPI tables, the `get_table()` function can be @@ -957,19 +968,20 @@ tables, the following command can be used in R: ``` r get_table() #> # A tibble: 117,902 × 7 -#> country release_year filename type score poverty_definition ppi -#> -#> 1 Afghanistan 2012 ppiAFG2012 sps 0 nl 100 -#> 2 Afghanistan 2012 ppiAFG2012 sps 0 nu150 100 -#> 3 Afghanistan 2012 ppiAFG2012 sps 0 nu200 100 -#> 4 Afghanistan 2012 ppiAFG2012 sps 0 extreme 100 -#> 5 Afghanistan 2012 ppiAFG2012 sps 0 ppp125 100 -#> 6 Afghanistan 2012 ppiAFG2012 sps 0 ppp250 100 -#> 7 Afghanistan 2012 ppiAFG2012 sps 1 nl 100 -#> 8 Afghanistan 2012 ppiAFG2012 sps 1 nu150 100 -#> 9 Afghanistan 2012 ppiAFG2012 sps 1 nu200 100 -#> 10 Afghanistan 2012 ppiAFG2012 sps 1 extreme 100 +#> country release_year filename type score poverty_definition +#> +#> 1 Afghanis… 2012 ppiAFG2… sps 0 nl +#> 2 Afghanis… 2012 ppiAFG2… sps 0 nu150 +#> 3 Afghanis… 2012 ppiAFG2… sps 0 nu200 +#> 4 Afghanis… 2012 ppiAFG2… sps 0 extreme +#> 5 Afghanis… 2012 ppiAFG2… sps 0 ppp125 +#> 6 Afghanis… 2012 ppiAFG2… sps 0 ppp250 +#> 7 Afghanis… 2012 ppiAFG2… sps 1 nl +#> 8 Afghanis… 2012 ppiAFG2… sps 1 nu150 +#> 9 Afghanis… 2012 ppiAFG2… sps 1 nu200 +#> 10 Afghanis… 2012 ppiAFG2… sps 1 extreme #> # ℹ 117,892 more rows +#> # ℹ 1 more variable: ppi ``` To get the actual PPI tables for all countries with PPI tables in @@ -978,19 +990,20 @@ Africa, the following command can be used in R: ``` r get_table(region = "Africa") #> # A tibble: 56,210 × 7 -#> country release_year filename type score poverty_definition ppi -#> -#> 1 Angola 2015 ppiAGO2015 sps 0 nl100 100 -#> 2 Angola 2015 ppiAGO2015 sps 0 nl150 100 -#> 3 Angola 2015 ppiAGO2015 sps 0 nl200 100 -#> 4 Angola 2015 ppiAGO2015 sps 0 half100 86.5 -#> 5 Angola 2015 ppiAGO2015 sps 0 ppp125 100 -#> 6 Angola 2015 ppiAGO2015 sps 0 ppp200 100 -#> 7 Angola 2015 ppiAGO2015 sps 0 ppp250 100 -#> 8 Angola 2015 ppiAGO2015 sps 0 ppp500 100 -#> 9 Angola 2015 ppiAGO2015 sps 1 nl100 100 -#> 10 Angola 2015 ppiAGO2015 sps 1 nl150 100 +#> country release_year filename type score poverty_definition +#> +#> 1 Angola 2015 ppiAGO2015 sps 0 nl100 +#> 2 Angola 2015 ppiAGO2015 sps 0 nl150 +#> 3 Angola 2015 ppiAGO2015 sps 0 nl200 +#> 4 Angola 2015 ppiAGO2015 sps 0 half100 +#> 5 Angola 2015 ppiAGO2015 sps 0 ppp125 +#> 6 Angola 2015 ppiAGO2015 sps 0 ppp200 +#> 7 Angola 2015 ppiAGO2015 sps 0 ppp250 +#> 8 Angola 2015 ppiAGO2015 sps 0 ppp500 +#> 9 Angola 2015 ppiAGO2015 sps 1 nl100 +#> 10 Angola 2015 ppiAGO2015 sps 1 nl150 #> # ℹ 56,200 more rows +#> # ℹ 1 more variable: ppi ``` ## Disclaimer @@ -1023,10 +1036,12 @@ follows: citation("ppitables") #> To cite ppitables in publications use: #> -#> Ernest Guevarra (2024). _ppitables: Lookup Tables to Generate Poverty -#> Likelihoods and Rates using the Poverty Probability Index (PPI)_. -#> doi:10.5281/zenodo.4129982 , -#> R package version 0.5.5, . +#> Ernest Guevarra (2024). _ppitables: Lookup Tables to +#> Generate Poverty Likelihoods and Rates using the +#> Poverty Probability Index (PPI)_. +#> doi:10.5281/zenodo.4129982 +#> , R package +#> version 0.5.5, . #> #> A BibTeX entry for LaTeX users is #> diff --git a/data-raw/createTables2019.R b/data-raw/createTables2019.R index bf650718..ee6639a4 100644 --- a/data-raw/createTables2019.R +++ b/data-raw/createTables2019.R @@ -589,3 +589,29 @@ names(mwi) <- c( ppiMWI2023 <- mwi usethis::use_data(ppiMWI2023, overwrite = TRUE, compress = "xz") + + +## Mozambique PPI ############################################################## + +moz <- read_xlsx( + path = "data-raw/sources/mozambique2024.xlsx", + sheet = "Look-up Tables 10Q", + range = "B9:G110" +) |> + dplyr::mutate( + dplyr::across( + .cols = `Bottom 20th percentile Wealth Index`:`Bottom 80th percentile Wealth Index`, + .fns = ~.x * 100 + ) + ) + +names(moz) <- c( + "score", + "percentile20", "percentile40", "percentile50", "percentile60", "percentile80" +) + +ppiMOZ2024 <- moz + +usethis::use_data(ppiMOZ2024, overwrite = TRUE, compress = "xz") + + diff --git a/data-raw/steer.csv b/data-raw/steer.csv index 8490f1f5..c44e33e5 100644 --- a/data-raw/steer.csv +++ b/data-raw/steer.csv @@ -66,6 +66,7 @@ Asia,Mongolia,2014,2016,PPI for Mongolia based on Mongolia 2014 Household Socio- Middle East and North Africa,Morocco,2007,2013,PPI for Morocco based on Morocco 2007 Households Living Standards Survey,sps,ppiMAR2013 Africa,Mozambique,2008,2013,PPI for Mozambique based on 2008/9 Household Budget Survey,sps,ppiMOZ2013 Africa,Mozambique,2014,2019,PPI for Mozambique based on 2014 Inquerito Sobre Orcamento Familiar (IOF) Survey,ipa,ppiMOZ2019 +Africa,Mozambique,2022,2024,PPI for Mozambique based on 2022 Demographic and Health Survey (DHS),ipa,ppiMOZ2024 Asia,Myanmar,2009,2012,PPI for Myanmar based on Myanmar 2009/10 Integrated Household Living Conditions Assessment,sps,ppiMMR2012 Asia,Myanmar,2015,2019,PPI for Myanmar based on Myanmar 2015 Poverty and Living Conditions Survey,ipa,ppiMMR2019 Africa,Namibia,2009,2013,PPI for Namibia based on Namibia 2009/10 Household Income and Expenditure Survey,sps,ppiNAM2013 diff --git a/data/ppiMOZ2024.rda b/data/ppiMOZ2024.rda new file mode 100644 index 00000000..d689be07 Binary files /dev/null and b/data/ppiMOZ2024.rda differ diff --git a/inst/WORDLIST b/inst/WORDLIST index 453f830f..ba753987 100644 --- a/inst/WORDLIST +++ b/inst/WORDLIST @@ -5,16 +5,22 @@ CSO CodeFactor Codecov Condiciones +DHS +Desempleo +EHCVM EHPM EICV EMC ENAHO +ENEMDU ENFT ENIGH EPH EPHPM ESPS +Empleo Encuesta +Enquete Enquête FIES Fuerza @@ -23,6 +29,7 @@ Gastos Göttingen HBS HIECS +Harmonisée Hogares IES IHS @@ -37,6 +44,7 @@ Katilingban Kyrgyz LCMS LFS +LSMS Laeken Leste Leste’s @@ -45,6 +53,7 @@ MOLISA MRP Multisectorielle Ménages +Múltiples NISR NRVA Nacional @@ -56,11 +65,16 @@ PBM PNAD PPI Pauvreté +Permanente Pobreza +Propósitos QUIBB RBI SUSENA +SUSENAS Sobre +Socioeconomic +Subempleo Suivi Sénégal Trabajo diff --git a/man/ppiMOZ2019.Rd b/man/ppiMOZ2019.Rd index e82ba31c..fc2f78a0 100644 --- a/man/ppiMOZ2019.Rd +++ b/man/ppiMOZ2019.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/04_data.R +% Please edit documentation in R/00_mozambique.R \docType{data} \name{ppiMOZ2019} \alias{ppiMOZ2019} @@ -31,7 +31,8 @@ A data frame with 15 columns and 101 rows: ppiMOZ2019 } \description{ -Poverty Probability Index (PPI) lookup table for Mozambique +This PPI was created in April 2019 using Mozambique’s 2014/15 Inquérito Sobre +Orçamento Familiar Survey and was released in May 2019. } \examples{ # Access Mozambique PPI table diff --git a/man/ppiMOZ2024.Rd b/man/ppiMOZ2024.Rd new file mode 100644 index 00000000..ce433a36 --- /dev/null +++ b/man/ppiMOZ2024.Rd @@ -0,0 +1,50 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/00_mozambique.R +\docType{data} +\name{ppiMOZ2024} +\alias{ppiMOZ2024} +\title{Poverty Probability Index (PPI) lookup table for Mozambique} +\format{ +A data frame with 6 columns and 101 rows: +\describe{ + \item{\code{score}}{PPI score} + \item{\code{percentile20}}{Below 20th percentile poverty line} + \item{\code{percentile40}}{Below 40th percentile poverty line} + \item{\code{percentile50}}{Below 50th percentile poverty line} + \item{\code{percentile60}}{Below 60th percentile poverty line} + \item{\code{percentile80}}{Below 80th percentile poverty line} +} +} +\source{ +\url{https://www.povertyindex.org} +} +\usage{ +ppiMOZ2024 +} +\description{ +The latest version of the PPI for Mozambique was created in June 2024 by +Innovations for Poverty Action (IPA) based on data from the 2022 Demographic +and Health Survey (DHS). +} +\examples{ + # Access Mozambique PPI table + ppiMOZ2024 + + # Given a specific PPI score (from 0 - 100), get the row of poverty + # probabilities from PPI table it corresponds to + ppiScore <- 50 + ppiMOZ2024[ppiMOZ2024$score == ppiScore, ] + + # Use subset() function to get the row of poverty probabilities + # corresponding to specific PPI score + ppiScore <- 50 + subset(ppiMOZ2024, score == ppiScore) + + # Given a specific PPI score (from 0 - 100), get a poverty probability + # based on a specific poverty definition. In this example, the national + # poverty line is used + ppiScore <- 50 + ppiMOZ2024[ppiMOZ2024$score == ppiScore, "percentile80"] + +} +\keyword{datasets} diff --git a/pkgdown/_pkgdown.yml b/pkgdown/_pkgdown.yml index 467d9947..2e475011 100644 --- a/pkgdown/_pkgdown.yml +++ b/pkgdown/_pkgdown.yml @@ -113,6 +113,7 @@ reference: - ppiMNG2016 - ppiMOZ2013 - ppiMOZ2019 + - ppiMOZ2024 - ppiMWI2015 - ppiMWI2015_gov - ppiMWI2015_pbm
    PPI Country Table NamePPI Country Table Name Name** Description PPI Release Year
    ppiBFA2014PPI for Burkina Faso using Burkina Faso’s 2014 Permanent Multi-Sector Survey2017PPI for Burkina Faso using Burkina Faso’s Permanent Multi-Sector Survey2014
    ppiBFA2017PPI for Burkina Faso using Burkina Faso’s 2014 Enquête Multisectorielle Continue (EMC) based on IPA’s new approach to PPI calculationPPI for Burkina Faso using Burkina Faso’s Enquête Multisectorielle Continue (EMC) based on IPA’s new approach to PPI calculation 2017
    ppiBGD2013PPI for Bangladesh using Bangaldesh’s 2010 HIES SurveyPPI for Bangladesh using the Bangaldesh’s 2010 HIES Survey 2013
    ppiCOL2012PPI for Colombia based on Colombia’s 2009 Encuesta Integrada de Hogares. This table uses the old poverty definitions.PPI for Colombia based on Colombia’s 2009 Encuesta Integrada de Hogares. This uses the old poverty definitions. 2012
    ppiETH2023PPI for Ethiopia based on data from the Socioeconomic Survey 2018/2019"PPI for Ethiopia based on data from the Socioeconomic Survey 2018/2019 2023
    2019
    ppiMOZ2024PPI for Mozambique based on data from the 2022 Demographic and Health Survey (DHS)2024
    PPI for Malawi based on Malawi’s 2010/11 Integrated Household Survey using legacy poverty definitions 2015
    ppiMWI2015_gov PPI for Malawi based on Malawi’s 2010/11 Integrated Household Survey using government poverty definitions 2015
    ppiMWI2015_pbm PPI for Malawi based on Malawi’s 2010/11 Integrated Household Survey using PBM poverty definitions 2015
    ppiMWI2020 PPI for Malawi based on Malawi’s 2016-2017 Fourth Integrated Household Survey (IHS4) using new PPI definitions 2020
    ppiMWI2023 PPI for Malawi based on data from the Fifth Integrated Household Survey 2019 2023
    PPI for Namibia based on Namibia’s 2009/10 Household Income and Expenditure Survey 2013
    PPI for Niger based on Niger’s 2007/8 National Household Budget and Expenditure Survey 2013
    PPI for Nigeria based on Nigeria’s 2012/13 General Household Panel Survey 2015
    PPI for Nicaragua based on Nicaragua’s 2009 Living Standards Measurement Survey 2013
    PPI for Nepal using legacy poverty definition lines 2013
    ppiNPL2013_a PPI for Nepal using new poverty definition lines 2013
    PPI for Pakistan using Pakistan 2005/6 Social and Living Standards Measurement Survey 2009
    PPI for Peru based on Peru’s 2010 National Household Survey 2012
    ppiPER2018 PPI for Peru based on Peru’s 2016 Encuesta Nacional de Hogares sobre Condiciones de Vida y Pobreza (ENAHO) 2018
    PPI for the Philippines based on Philippines’ 2009 FIES/LFS. 2014
    ppiPHL2018 PPI for the Philippines based on Philippines’ 2015 Family Income and Expenditure Survey (FIES) 2018
    ppiPHL2023 PPI for the Philippines based on data from the 2018 Family Income and Expenditure Survey (FIES) 2023
    PPI for Papua New Guinea based on data from 2016-2018 Demographic and Health Survey (DHS) 2023
    PPI for Paraguay based on Paraguay’s 2011 EPH 2012
    PPI for Palestine based on Palestine’s 2011 Expenditure and Consumption Survey 2014
    PPI for Romania based on the 2007 HBS 2009
    PPI for Russia based on 2007 HBS 2010
    PPI for Rwanda based on Rwanda’s 2010/11 Integrated Household Living Standards Survey 2016
    ppiRWA2019 PPI for Rwanda based on Rwanda’s 2016/2017 Integrated Household Living Conditions Survey (EICV5) produced by the National Institute of Statistics of Rwanda (NISR) and the Ministry of Finance and Planning 2019
    PPI for Senegal based on Senegal’s 2005/6 Enquête de Suivi de la Pauvreté au Sénégal (ESPS) 2009
    ppiSEN2018 PPI for Senegal based on Senegal’s 2011 Enquête de Suivi de la Pauvreté au Sénégal (ESPS) 2018
    PPI for Sierra Leone based on Sierra Leone’s 2003/4 HIS 2011
    PPI for El Salvador based on the 2008 EHPM 2010
    ppiSLV2021 PPI for El Salvador based on data from 2019 Encuesta de Hogares de Propósitos Múltiples 2021
    PPI for Syria based on Syria’s 2006/7 Household Income and Expenditure Survey 2010
    PPI for Tajikistan based on 2007 data 2015
    PPI for Timor Leste based on Timor-Leste’s 2007 Survey of Living Standards 2013
    PPI for Tanzania based on Tanzania’s 2011/12 Household Budget Survey 2016
    ppiTZA2022 PPI for Tanzania based on Tanzania’s 2017/2018 Household Budget Survey 2022
    PPI for Togo based on Togo’s 2015 Questionnaire des Indicateurs de Base du Bien-être (QUIBB) 2018
    ppiTGO2023 PPI for Togo based on data from the 2018 Enquête Harmonisée sur le Conditions de Vie des Ménages (EHCVM) 2023
    PPI for Uganda based on Uganda’s 2012/13 National Household Survey 2015
    ppiUGA2022 PPI for Uganda based on Uganda’s 2020 National Household Survey 2022
    PPI for Vietnam based on the 2006 VHLSS 2009
    ppiVNM2023 PPI for Vietnam based on data from the 2021 Multiple Indicator Cluster Survey 2023
    PPI for Yemen based on 2005/06 HBS 2009
    PPI for South Africa based on the 2005/6 IES 2009
    ppiZAF2023 PPI for South Africa based on data from the 2019 General Household Survey 2023
    PPI for Zambia based on Zambia’s 2010 Living Conditions Monitoring Survey (LCMS) using Göttingen poverty definitions 2013
    ppiZMB2013_cso PPI for Zambia based on Zambia’s 2010 Living Conditions Monitoring Survey (LCMS) using CSO poverty definitions 2013
    ppiZMB2017 PPI for Zambia based on Zambia’s 2015 Living Conditions Monitoring Survey (LCMS) using legacy poverty definitions 2017
    ppiZMB2017_a PPI for Zambia based on Zambia’s 2015 Living Conditions Monitoring Survey (LCMS) using new PPI calculation approach