Hi,
I want to estimate price elasticity of gas consumption by implementing an instrumented DID. the price changes over time for different regions and are affected by authorities in each region.
Therefore I use Region as my instrument that induce variation in price of gas. But there is some concern that Region affects consumption of gas through variables other than price such as temperature (violating exclusion restriction).
Does including potential variables in the regression address exclusion restriction ? like controlling temperature.
In other words does the following 2sls regression estimate UNBIASED coefficients? (Assuming the only channel that Region might affect the consumption of gas other than price is temperature)
I want to estimate price elasticity of gas consumption by implementing an instrumented DID. the price changes over time for different regions and are affected by authorities in each region.
Therefore I use Region as my instrument that induce variation in price of gas. But there is some concern that Region affects consumption of gas through variables other than price such as temperature (violating exclusion restriction).
Does including potential variables in the regression address exclusion restriction ? like controlling temperature.
In other words does the following 2sls regression estimate UNBIASED coefficients? (Assuming the only channel that Region might affect the consumption of gas other than price is temperature)
Code:
ivreg2 GasConsumption i.year i.ZipCode Temp (Price = i.Region i.Region#i.year), robust cluster(ZipCode)
Comment