Good morning,
I am running a regression including a lot of absorbed trend and I am using gregress by Correia (gtools package from SSC).
After running the command, as an example,
I get the following
I have no idea on how to basically see and save in Stata the results of the estimation. Could you help, please? Thanks a lot!
I am running a regression including a lot of absorbed trend and I am using gregress by Correia (gtools package from SSC).
After running the command, as an example,
Code:
sysuse auto qui tab foreign, gen(ff) gregress price mpg rep78, absorb(ff1 ff2) cluster(foregin)
I get the following
Code:
. gregress price mpg rep78, absorb(ff1 ff2) cluster(foreign) warning gregress is beta software; use with caution Results in GtoolsRegress; see mata GtoolsRegress.desc() . mata GtoolsRegress.desc() GtoolsRegress is a class object with gregress results | object | value | description | | ----------- | ---------------- | ------------------------------------------------------------- | | kx | 2 | number of (non-absorbed) covariates | | cons | 0 | whether a constant was added automagically | | b | 1 x 2 matrix | regression coefficients | | se | 1 x 2 matrix | corresponding standard errors | | setype | cluster | type of SE computed (homoskedastic, robust, or cluster) | | absorbvars | 1 x 2 row vector | variables absorbed as fixed effects | | njabsorb | 1 x 2 row vector | number of FE each absorb variable had for each grouping level | | clustervars | 1 x 1 row vector | cluster variables | | njcluster | 1 x 1 row vector | number of clusters per grouping level |
Comment