一、eststo命令
eststo命令是Stata中一个非常便捷的命令,它可以将模型结果保存到一个新的文件中。通过使用eststo命令,用户可以方便地保存不同模型的结果并进行比较。eststo命令的基本语法如下:
eststo [name] [modelspecification]
其中,[name]是所存储结果的文件名,[modelspecification]表示要保存的模型,可以是任何可以用于估计模型的命令,如reg, ivreg, logit等。
二、eststo is unrecognized
执行eststo命令时,如果出现了“eststo is unrecognized”这样的错误提示,通常是因为eststo命令未被正确安装或导入。在此情况下,用户需要通过以下命令将eststo命令下载并导入:
net install estout, from("http://repec.org/bocode/e/estout")
这个命令会将estout和eststo两个命令均下载并导入。如果你只需要使用eststo命令,可以只执行下面这个命令:
net install eststo, from("http://repec.org/bocode/e/estout")
三、eststo怎么用
下面通过一个简单的例子来说明如何使用eststo命令:
sysuse auto eststo: reg price mpg weight eststo: reg price mpg weight length eststo summary
在这个例子中,我们首先使用sysuse命令导入了Stata自带的auto数据集,然后使用eststo命令将两个模型的结果分别保存到est1和est2这两个文件中。最后,我们使用eststo summary命令来查看所有模型的汇总结果。
四、eststo怎么安装
安装eststo命令非常简单,只需要执行下面这个命令:
net install eststo, from("http://repec.org/bocode/e/estout")
如果你已经在Stata中安装了estout命令,就无需再次执行这个命令,因为estout和eststo是共享一个安装包的。
五、eststo clear
如果你需要清除所有保存的模型结果,可以使用eststo clear命令:
eststo clear
这个命令会清除所有已经保存的模型结果,慎用。
六、eststore
eststore是eststo的一个变体命令,它可以将估计结果保存在一个矩阵中,而不是文件中。下面是一个示例:
sysuse auto reg price mpg weight eststore model1 reg price mpg weight length eststore model2 matrix list e(b), name(model1) matrix list e(b), name(model2)
在这个例子中,我们先估计了两个模型,然后使用eststore将结果分别保存到model1和model2这两个矩阵中。最后,我们使用matrix list命令查看了估计系数矩阵。