Dear all,
My work consists on the Paper of Jordà, Schularick and Taylor (2016) - Sovereigns vs. Banks: Credit Crisis and Consequences which is available under
https://academic.oup.com/jeea/articl...4/1/45/2319810
I am currently doing the following regression,
where:
and
As you can see, I used the lag length of 1. Because the authors did it that way in their paper. However, I would like to find the appropriate lag length and found the stata command
I just don´t know how to use this command in my example and how to interpret the outcome.
Maybe someone could help?
Thank you!
My work consists on the Paper of Jordà, Schularick and Taylor (2016) - Sovereigns vs. Banks: Credit Crisis and Consequences which is available under
https://academic.oup.com/jeea/articl...4/1/45/2319810
I am currently doing the following regression,
Code:
foreach v in `irvars5' { forvalues i =1/5 { reg `v'`i' pk_norm pk_fin excess_prv `rhs8a' d1-d17 , noconstant vce(cluster iso)
Code:
local rhs8a /// dlrgdp drprv dlcpi dlriy drpub stir ltrate cay /// ldlrgdp ldrprv ldlcpi ldlriy ldrpub lstir lltrate lcay local irvars5 lrgdp lriy lcpi rprv rpub
Code:
* (1) growth rate of real GDP per capita (annual, in percent) gen lrgdp = log(rgdppc) //growth in percent is 100 * the logarithm of real GDP per capita gen dlrgdp = 100*d.lrgdp * (2) growth rate of real loans per capita (annual, in percent) gen lloans = log(tloans) gen lcpi = log(cpi) gen lpop = log(pop) gen rprv = lloans - lcpi - lpop //growth in percent is 100 * rprv gen drprv = 100*d.rprv * (3) the consumer price index (CPI) inflation rate (annual, in percent) //growth in percent is 100 * the logarithm of CPI gen dlcpi = 100*d.lcpi * (4) the growth rate of real investment per capita (annual, in percent) //growth in percent is 100 * the logarithm of real investment gen riy = iy * rgdppc gen lriy = log(riy) gen dlriy = 100*d.lriy * (5) the growth rate of real public debt per capita (annual, in percent) rename debtgdp pubgdp gen rpub = log(pubgdp) + log(gdp) - lcpi - lpop //growth in percent is 100 * the logarithm of real public debt per capita gen drpub = 100*d.rpub * (6) short-term interest rates on government securities replace stir = 100*stir * (7) long-term interest rates on government securities replace ltrate = 100*ltrate * (8) curent-account-to-GDP-ratio gen cay = 100*(ca/gdp) //Now we need the lags of all the 8 controls gen ldlrgdp = l.dlrgdp gen ldrprv = l.drprv gen ldlcpi = l.dlcpi gen ldlriy = l.dlriy gen ldrpub = l.drpub gen lstir = l.stir gen lltrate = l.ltrate gen lcay =l.cay
Code:
estat ic
Maybe someone could help?
Thank you!
Comment