从Stata中的输出表中删除随机效果参数

时间:2015-06-13 05:10:26

标签: stata mixed-models

我想在Stata中通过esttab估算的混合效果回归创建一个回归表(使用xtmixed),但我希望输出没有随机效果参数。如何从输出表中删除随机效果参数?例如,在两个变量的情况下......

xtmixed (Dependent Variable) (Independent variable) || (Grouping Variable)

...我不希望lns1_1_1 - 表中的lnsig_eesttab值。这样做的最佳方式是什么?

1 个答案:

答案 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行和列名称

(召回esttabestout的包装。)