Hello,
I am trying to export Spearman correlations in a matrix with significance level below the correlation coefficient, but I am stuck. Any suggestions? Here is my code so far:
I am trying to export Spearman correlations in a matrix with significance level below the correlation coefficient, but I am stuck. Any suggestions? Here is my code so far:
Code:
sysuse auto, clear spearman price mpg weight, pw stats(rho p) matrix A = r(Rho) esttab matrix(A, fmt(%5.2f)) using corrtable.rtf
Comment