normalscores(A)

Returns a matrix such that the first column contains the sorted entries of array A and the second contains the corresponding normal scores.


See also linearreg_ht_nor 


Example


a = (3, 4, 3, 4, 5, 4, 5, 4)

( 3 4 3 4 5 4 5 4 )

h = normalscores( a )

 3.0 -1.4342

 3.0 -0.8525

 4.0 -0.4728

 4.0 -0.1525 

 4.0  0.1525 

 4.0  0.4728 

 5.0  0.8525 

 5.0  1.4342