Hi everyone,
I am trying to plot a regression coefficient over time with monthly data.
I the the following commands so far:
foreach i of varlist Date {
reg ret1 CSV1 if Date == `i'
estimates store Date`i'
local allyears `allyears' Date`i' ||
local labels `labels' `i'
}
I do not get the "allyears" variable.
Does anyone know what the problem is?
Thank you in advance.
I am trying to plot a regression coefficient over time with monthly data.
I the the following commands so far:
foreach i of varlist Date {
reg ret1 CSV1 if Date == `i'
estimates store Date`i'
local allyears `allyears' Date`i' ||
local labels `labels' `i'
}
I do not get the "allyears" variable.
Does anyone know what the problem is?
Thank you in advance.
Comment