income_constant_prices.Rd
This function allows you to calculate the household income constant prices
income_constant_prices(
data = ech::toy_ech_2018,
base_month = 6,
base_year = 2018,
index = "IPC",
level = "G",
mes = "mes",
ht11 = "ht11",
ht13 = "ht13",
ht19 = "ht19"
)
data.frame with ECH microdata
baseline month
baseline year
IPC or IPAB
General ("G") or Regional ("R")
month
Variable name of income. Default: ht11
Variable name of rental value. Default: ht13
Variable name of number of individuals in the household. Default: ht19
data.frame
Disclaimer: This script is not an official INE product. Aviso: El script no es un producto oficial de INE.
Other income:
basket_goods()
,
deflate()
,
income_quantiles()
,
labor_income_per_capita()
,
labor_income_per_hour()
,
organize_ht11()
# \donttest{
toy_ech_2018 <- income_constant_prices(data = ech::toy_ech_2018)
#> Variables have been created:
#> y_pc (income per capita current prices / ingreso per capita a precios corrientes);
#> y_pc_d (income per capita deflated / ingreso per capita deflactado);
#> rv_d (rental value deflated / valor locativo deflactado);
#> y_wrv_d (income without rental value deflated / ingreso sin valor locativo deflactado) &
#> y_wrv_pc_d (income without rental value per capita deflated / ingreso sin valor locativo per capita deflactado)
# }