连老师,请问怎样将多个回归模型的结果直接输入到MS Word?例如怎么得到下面图片里这张表,用哪些命令可以做到? 如果直接复制,不管是“copy”,“copy table”,都要手工处理,否则format就很乱(ex 星号不会在右上角)。我总觉得一定有这种commands,但是不管是estout 还是tabout都不好用。您有解决办法么?先谢过!
*** an example from UCLA illustrating how to make regression tables that look like those in journal articles
use
http://www.ats.ucla.edu/stat/stata/notes/hsb2, clear
regress read female write
estimates store m1, title(Model 1)
regress read female write math
estimates store m2, title(Model 2)
regress read female write math science socst
estimates store m3, title(Model 3)
estout m1 m2 m3, cells(b(star fmt(3)) se(par fmt(2))) style(fixed) legend label varlabels(_cons constant) stats(r2 df_r bic, fmt(3 0 1) label(R-sqr dfres BIC))