Stata: Outputting correlation tables

Monday, June 1, 2009

There are two ways to export correlation tables from Stata to Word or Excel. The first approach works only on Windows. You first select your correlation table and copy it.

1.png

2.png


You then paste it into Excel and do some editing.
3.png

If you would like stars after your correlation coefficient, run a command like this:

pwcorr X1 X2 X3 X4, star(.05)

and then copy the table as mentioned above. It will look like this when you paste it into Excel

4.png

The second way is to use esttab, in which the command looks like this:

estpost correlate x1 x2 x3 x4, matrix listwise
est store c1
esttab * using test_correlation.rtf, unstack not noobs compress
Related Posts Plugin for WordPress, Blogger...

Comments

No response to “Stata: Outputting correlation tables”
Post a Comment | Post Comments (Atom)

Post a Comment