Producing regression table in stata from bayesmh -
i know whether there way generate regression table automatically bayesmh in stata. example, using esttab can create regression table automatically regress command:
sysuse auto foreach var of varlist mpg weight trunk length { eststo: reg price `var' } esttab, b(%7.3f) se(%7.3f) eqlabel(none) ar2 label
this results in regression table. but, cannot after run bayesmh. part of reason in bayesmh, have no e(b) , e(v). instead, have e(mean), e(mcse) , on. can produce regression table (like 1 in esttab or outreg) bayesmh?. way, can use esttab transfer mcmc mean esttab using:
bayesmh price mpg, likelihood(normal({var})) prior({price:}, flat) prior({var}, jeffrey) esttab, cells(mean mcse)
but, 1 model only. how can if have multiple models in frequentist above (where have 4 models: price~mpg; price~weight; price~trunk; , price~length)? curious if there code produce table automatically estimating multiple models in bayesmh.
Comments
Post a Comment