Dear, I am new to Stata. Thank you for your help. These days, I am reading the programming books, and encounter the following syntax. I do not understand why we need to put the equal sign (I have already signed it) in the double quotes. In other words, when shall we put it in the double quotes and when not.
global y "consume"
global x "gdpper real_i rategap ss depend bank_w"
reg $y $x
est store c1
reg $y $x fix*
est store c2
ereturn list
global mm "c1 c2"
dis "Dependent = " in y "$y"
esttab $mm, b(%6.3f) star(* 0.1 ** 0.05 *** 0.01)///
scalar (r2 r2_a F N)
compress nogaps
order($x) drop(*fix*)
mtitle (OLS FE)
Best
Thank you again
global y "consume"
global x "gdpper real_i rategap ss depend bank_w"
reg $y $x
est store c1
reg $y $x fix*
est store c2
ereturn list
global mm "c1 c2"
dis "Dependent = " in y "$y"
esttab $mm, b(%6.3f) star(* 0.1 ** 0.05 *** 0.01)///
scalar (r2 r2_a F N)
compress nogaps
order($x) drop(*fix*)
mtitle (OLS FE)
Best
Thank you again
Comment