我想在Stata中通过esttab
估算的混合效果回归创建一个回归表(使用xtmixed
),但我希望输出没有随机效果参数。如何从输出表中删除随机效果参数?例如,在两个变量的情况下......
xtmixed (Dependent Variable) (Independent variable) || (Grouping Variable)
)
...我不希望lns1_1_1
- 表中的lnsig_e
和esttab
值。这样做的最佳方式是什么?
答案 0 :(得分:3)
有keep()
和drop()
选项。例如:
webuse productivity, clear
xtmixed gsp private emp hwy water other unemp || region: || state:, mle
estimates store m1
// check result names
matrix list e(b)
// with -keep()- option
estout m1, keep(private emp hwy water other unemp gsp:_cons)
// with -drop()- option
estout m1, drop(lns1_1_1:_cons lns2_1_1:_cons lnsig_e:_cons)
在多方程估计的上下文中,结果矩阵具有包含两部分名称的元素。一般形式是 equation-name:varname 。 matrix list
的结果显示了这一点。然后,只需在keep()
和drop()
选项中使用相应的名称。
有关命名约定的更多详细信息,请参阅 [U] 14.2行和列名称。
(召回esttab
是estout
的包装。)