I am attempting to put multiple regressions in a table with the coefficients and p values. However, I am having an issue with the labelling of row and column headers-
This is the current code I am using:
I tried another method of labelling which also doesn't seem to work:
Not sure what is going wrong here?
This is the current code I am using:
Code:
estout m1 m2 m3
---------------------------------------------------
m1 m2 m3
b b b
---------------------------------------------------
UKIS -.0111878 -.0280661 -.0001217
CCI .0000502 .0002587 -.0000379
EPU -7.97e-07 -7.19e-06 .0000152
_cons -.0043665 -.0218091 -.0002017
---------------------------------------------------
. label varlabels(_cons Constant)
invalid syntax
r(198);
Code:
label _cons "constant" invalid syntax r(198);

Comment