Hi,
I have advanced stata codes that i am trying to build on in order to generate results. However, since I am a beginner in stata, I wasn't able to interpret the line in order to change the variables according to my needs. I would be very very grateful if someone explains this line to me (and please bear my ignorance):
The variables that I have in the dataset are :
So mainly I don't undertstand the following:
1.L(0/`lag') and L(0/`lag')
2.the dot represents what ? for example in L(1/`lag').epu. is this the one period lagged value of epu? if this is the case then i.quarter is what ?
3.L(0/`lag').dl_`cat' is what? (I don't have any cat variable)
4. Finally,in L(1/`lag').epu_`epu' why is there two consecutive epu? (in other words what i the job of _`epu')?
Many thanks
I have advanced stata codes that i am trying to build on in order to generate results. However, since I am a beginner in stata, I wasn't able to interpret the line in order to change the variables according to my needs. I would be very very grateful if someone explains this line to me (and please bear my ignorance):
Code:
model_dy reg L(0/`lag').dl_`cat'_rloans L(1/`lag').epu_`epu' L(1/`lag').dy L(1/`lag').dr L(1/`lag').RegQ L(1/`lag').credit_controls L(1/`lag').cexp i.quarter
name |
q_date |
dl_tot_rloans |
dl_cai_rloans |
dl_rea_rloans |
dl_con_rloans |
dr |
dy |
credit_controls |
RegQ |
epu_hist_new |
epu_finc |
epu_headline |
cexp |
quarter |
jgdp |
1.L(0/`lag') and L(0/`lag')
2.the dot represents what ? for example in L(1/`lag').epu. is this the one period lagged value of epu? if this is the case then i.quarter is what ?
3.L(0/`lag').dl_`cat' is what? (I don't have any cat variable)
4. Finally,in L(1/`lag').epu_`epu' why is there two consecutive epu? (in other words what i the job of _`epu')?
Many thanks
Comment