Stata可以将矩阵输出到excel进行进一步分析
//export the estimators and covariance matrix to excel
putexcel set "$output\\estimate_ols_bin_4.xlsx", sheet("betahat") replace
putexcel A1=matrix(beta), name //beta是一个定义好的矩阵名,选项name将输出矩阵的行名和列名
Stata可以将矩阵输出到excel进行进一步分析
//export the estimators and covariance matrix to excel
putexcel set "$output\\estimate_ols_bin_4.xlsx", sheet("betahat") replace
putexcel A1=matrix(beta), name //beta是一个定义好的矩阵名,选项name将输出矩阵的行名和列名