/* This is the new dataset */
/* Five Socio-Economic Variables - Harman pg 14 */

Mata

R = (1.00000,0.00975,0.97245,0.43887,0.02241\0.00975,1.00000,0.15428,0.69141,0.86307\0.97245,0.15428,1.00000,0.51472,0.12193\0.43887,0.69141,0.51472,1.00000,0.77765\0.02241,0.86307,0.12193,0.77765,1.00000)
Stata
#delimit ;
mat R = (
1.00000,0.00975,0.97245,0.43887,0.02241\   
0.00975,1.00000,0.15428,0.69141,0.86307\            
0.97245,0.15428,1.00000,0.51472,0.12193\            
0.43887,0.69141,0.51472,1.00000,0.77765\            
0.02241,0.86307,0.12193,0.77765,1.00000);
#delimit cr
SAS IML
R = {
1.00000 0.00975 0.97245 0.43887 0.02241,
0.00975 1.00000 0.15428 0.69141 0.86307,
0.97245 0.15428 1.00000 0.51472 0.12193,
0.43887 0.69141 0.51472 1.00000 0.77765,
0.02241 0.86307 0.12193 0.77765 1.00000
};