看起来两者都是
,
和
:
用于内部解析,因此如果要使用
rename()
选项。
eststo clear
sysuse auto2, clear
label variable price "(1,2)"
label variable turn "(3,5)"
reg mpg price turn
esttab, label
------------------------------------
(1)
Mileage (m~)
------------------------------------
(1,2) -0.000534**
(-3.38)
(3,5) -0.835***
(-7.89)
Constant 57.69***
(14.32)
------------------------------------
Observations 74
------------------------------------
t statistics in parentheses
* p<0.05, ** p<0.01, *** p<0.001
label variable price "Var1: (1,2)"
label variable turn "Var2: (3,5)"
reg mpg price turn
esttab, label
------------------------------------
(1)
Mileage (m~)
------------------------------------
Var1: (1,2) -0.000534**
(-3.38)
Var2: (3,5) -0.835***
(-7.89)
Constant 57.69***
(14.32)
------------------------------------
Observations 74
------------------------------------
t statistics in parentheses
* p<0.05, ** p<0.01, *** p<0.001
编辑:
的帮助文件
estout
确认:
rename(matchlist) changes the names of individual coefficients, where
matchlist is
oldname newname [oldname newname ...]
oldname can be a parameter name (e.g. price) or a full name including
an equation specification (e.g. mean:price)...