integrated_poverty_measure.Rd
This function allows you to calculate an integrated poverty measure
integrated_poverty_measure(
data = ech::toy_ech_2018,
pobre06 = "pobre06",
UBN_q = "UBN_q"
)
data.frame
Variable name of poverty
Variable name of UBN
data.frame
Other poverty:
poverty()
,
unsatisfied_basic_needs()
# \donttest{
toy_ech_18 <- enrolled_school(data = ech::toy_ech_2018)
#> A variable has been created:
#> school_enrollment (matriculacion escolar)
toy_ech_18 <- years_of_schooling(toy_ech_18)
#> A variable has been created:
#> years_schooling (anios de escolaridad)
toy_ech_18 <- unsatisfied_basic_needs(toy_ech_18)
#> Variables have been created:
#> UBN_housing (NBI vivienda);
#> UBN_water (NBI acceso al agua);
#> UBN_sewerage (NBI saneamiento);
#> UBN_electricity (NBI electricidad);
#> UBN_confort (NBI confort);
#> UBN_education (NBI educacion);
#> UBN_q (suma de NBIs) &
#> UBN (Categoria NBI)
toy_ech_18 <- integrated_poverty_measure(data = toy_ech_18)
#> integrated_poverty_measure (Pobreza integrada)
# }