I have successfully run a sem model, and also am able to output the table of results, at least for a single model.
I do not need to report the variance, covariances, and means of coefficients but cannot seem to drop them from the table.
so, this works:
estout, stats(aic bic N) cells(b(star fmt(3)) t(par fmt(2)))
but this doesn't:
estout, stats(aic bic N) cells(b(star fmt(3)) t(par fmt(2))) drop(_mean* _cov* _var*)
any ideas?
I do not need to report the variance, covariances, and means of coefficients but cannot seem to drop them from the table.
so, this works:
estout, stats(aic bic N) cells(b(star fmt(3)) t(par fmt(2)))
but this doesn't:
estout, stats(aic bic N) cells(b(star fmt(3)) t(par fmt(2))) drop(_mean* _cov* _var*)
any ideas?
Comment