Hi,
I would like to include a correlation matrix in an existing Excel file (not .csv). I would like to statistical significance * to be reported as well. The format I would like is the following:
Thank you for your help!
I would like to include a correlation matrix in an existing Excel file (not .csv). I would like to statistical significance * to be reported as well. The format I would like is the following:
Code:
sysuse auto.dta, clear estpost correlate weight length gear_ratio price, matrix listwise esttab using test.csv, replace unstack not noobs compress /// title(Panel B: Pairwise Pearsons Correlation) /// nonumbers /// addnote("Note: Correlation Matrix")
Comment