
This page announced updates in Stata 10. See a complete overview of all of Stata's features. |
Order |
Here are the details:
estimates save filename
to save results and
estimates use filename
to reload them. In fact, the entire
estimates command has been reworked. The new command
estimates notes allows you to add notes to estimation
results just as you add them to datasets. The new command
estimates esample allows you to restore
e(sample) after reloading estimates, should that be
necessary (usually it is not). The maximum number of estimation results
that can be held in memory (as opposed to saved on disk) is increased to
300 from 20. See [R]
estimates.
. estimation-command ..., robust
you are now to type
. estimation-command ..., vce(robust)
and where you previously typed
. estimation-command ..., robust cluster(clustervar)with or without the robust, you are now to type
. estimation-command ..., vce(cluster clustervar)You can still type the old syntax, but it is undocumented. The new syntax emphasizes that the robust and cluster calculation affects standard errors, not coefficients. See [R] vce_option.