In this example, we analyze the distributional impacts of energy price shocks in Spain, focusing on two scenarios:
We will use the medusa
package to evaluate the
socioeconomic impacts of these scenarios.
Each column labeled Scenario__
represents a
different scenario. We will keep Scenario 1 and Scenario 2 (but you can
also rename them to be more intuitive).
Enter the price shocks for each COICOP category and each Scenario. In this case, we introduce:
1.5
in “Use of personal vehicles” for
both scenarios to indicate that fuel prices increase by 50%.0.5
in “Electricity, gas and other
fuels” in Scenario 2 to indicate that, due to
the government policy, domestic energy prices decrease by 50%.1
in all other categories to indicate that
prices in these categories remain unaffected.Save the edited CSV file.
Upload the edited file into R:
exampledf <- read.csv("Example_shocks.csv", header = TRUE, sep = ",", dec = ".")
This function will return the set of available variables in the console. For this example, we will select “DECILE”, which refers to household income deciles. For more information on available variables, visit here.
calc_di(2019, # Base year: 2019
shocks = exampledf, # File containing the shocks
var_impact = "DECILE") # Select income deciles as the socioeconomic variable
By default, this function saves the produced results and the corresponding figure in your working directory for each specified variable, in this case, for DECILE.
The figure generated by calc_di
illustrates the relative
impact (%) on total equivalent consumption expenditure (which we use as
a proxy of income) across income deciles. A negative
change indicates that households are negatively affected,
meaning their income decreases by that percentage relative to their
previous income. Conversely, a positive change implies
a cost reduction, allowing households to save and increase their income
by the given percentage.
example_vars <- read.csv("Var_intersec.csv", header = TRUE, sep = ",", dec = ".")
calc_di
similarly to step 8, but in this
case, we will disable calculations for individual
variables and introduce intersectional variables:
calc_di(2019, # Base year: 2019
shocks = exampledf, # File containing the shocks
var_impact = NULL, # Skip single-variable analysis
var_intersec = example_vars) # Use selected intersectional variables
By default, this function saves the produced results and the corresponding figure in your working directory for each specified intersectional variables, in this case, for QUINTILE-GENDERRP.
The figure generated by calc_di
shows the relative
impact (%) on total equivalent consumption expenditure across income
quintiles, disaggregated by the gender of the reference person in the
household. A negative change indicates a welfare loss,
while a positive change implies a cost reduction,
improving household welfare.