Last data update: 2014.03.03

R: Imputation of missing data by using Nearest Neighbour...
ForImp.MahalaR Documentation

Imputation of missing data by using Nearest Neighbour Imputation with the Mahalanobis distance

Description

This function imputes quantitative missing data by using Nearest Neighbour Imputation (NNI) with the Mahalanobis distance in a forward and sequential step-by-step process that starts from the complete part of data.

Usage

ForImp.Mahala(mat, probs=seq(0, 1, 0.1), q="10%", add.unit=TRUE, squared=FALSE, 
tol=1e-6)

Arguments

mat

a quantitative data matrix with missing entries.

probs

vector of probabilities with values in [0, 1] for computing quantiles of Mahalanobis distances in selection of donors. Default option: probs=seq(0,1,0.1) calculates the deciles of distances. Quantiles are computed with the generic function quantile.

q

string of the form "X%", with X=integer. It gives the quantile of Mahalanobis distances corresponding to the first "X%" distances as computed (and named) by the function quantile with probabilities specified in the argument probs.

add.unit

a logical value. If add.unit=TRUE (default), the covariance matrix in the Mahalanobis distance is computed at every step of the procedure by including also the incomplete unit whose donors are to be selected. Otherwise, add.unit=FALSE indicates that computation involves the complete units only.

squared

a logical value indicating if the Mahalanobis distance has to be used (squared= FALSE, default) or the squared Mahalanobis distance (squared=TRUE).

tol

tolerance factor introduced to prevent numerical problems occuring when distances of complete units are equal to the choosen quantile q. Default is tol=1e-6.

Details

ForImp.Mahala is a forward imputation method alternative to the ForImp.PCA procedure for imputing quantitative missing data (see ForImp.PCA). It does not embrace Stage 1 since it works directly on the original variables. Regarding Stage 2, the basic metric for the NNI method is the Mahalanobis distance. Steps 2 to 3 are therefore iteratively repeated until the starting data matrix is completely imputed.

Unlike ForImp.PCA, the ForImp.Mahala procedure requires that the number n of units is equal or greater than the number p of variables at every step of the procedure, otherwise the covariance matrix involved in the Mahalanobis distance is not invertible. For further details, see the references below.

Value

The imputed data matrix.

Author(s)

Nadia Solaro, Alessandro Barbiero, Giancarlo Manzi, Pier Alda Ferrari

References

Solaro, N., Barbiero, A., Manzi. G., Ferrari, P.A. (2014). Algorithmic-type imputation techniques with different data structures: Alternative approaches in comparison. In: Vicari, D., Okada, A., Ragozini, G., Weihs, C. (eds), Analysis and modeling of complex data in behavioural and social sciences, Studies in Classification, Data Analysis, and Knowledge Organization. Springer International Publishing, Cham (CH): 253-261

Solaro, N., Barbiero, A., Manzi, G., Ferrari, P.A. (2015) A sequential distance-based approach for imputing missing data: The Forward Imputation. Under review

See Also

ForImp.PCA

Examples

# EXAMPLE with multivariate normal data (MVN)
# require('mvtnorm')
# number of variables
p <- 5
# correlation matrix
rho <- 0.8
Rho <- matrix(rho, p, p)
diag(Rho) <- 1
Rho
# mean vector
vmean <- rep(0,p)
vmean
# number of units
n <- 1000
# percentage of missing values
percmiss <- 0.2
nummiss <- n*p*percmiss
nummiss
# generation of a complete matrix
set.seed(1)
x0 <- rmvnorm(n, mean=vmean, sigma=Rho)
x0
# generating a matrix with missing data
x <- missing.gen(x0, nummiss) 
# imputing missing values
xForImpMahala <- ForImp.Mahala(x)
xForImpMahala
# computing the Relative Mean Square Error
error <- sum(apply((x0-xForImpMahala)^2/diag(var(x0)),2,sum)) / n
error


# EXAMPLE with real data
data(airquality)
m0 <- airquality
m0
# selecting the first 4 columns, with quantitative data
m <- m0[, 1:4]
m
# imputation
mi <- ForImp.Mahala(m)
mi
# plot of imputed values for variable "Ozone"
ozone.miss.ind <- which(is.na(m)[,1])
plot(mi[ozone.miss.ind,1], axes=FALSE, pch=19, ylab="imputed values of Ozone", 
  xlab="observation index")
axis(2)
axis(1, at=1:length(ozone.miss.ind), labels=ozone.miss.ind, las=2)
box()
abline(v=1:length(ozone.miss.ind), lty=3, col="grey")

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(GenForImp)
Loading required package: mvtnorm
Loading required package: sn
Loading required package: stats4

Attaching package: 'sn'

The following object is masked from 'package:stats':

    sd

> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/GenForImp/ForImp.Mahala.Rd_%03d_medium.png", width=480, height=480)
> ### Name: ForImp.Mahala
> ### Title: Imputation of missing data by using Nearest Neighbour Imputation
> ###   with the Mahalanobis distance
> ### Aliases: ForImp.Mahala
> ### Keywords: multivariate NA nonparametric
> 
> ### ** Examples
> 
> # EXAMPLE with multivariate normal data (MVN)
> # require('mvtnorm')
> # number of variables
> p <- 5
> # correlation matrix
> rho <- 0.8
> Rho <- matrix(rho, p, p)
> diag(Rho) <- 1
> Rho
     [,1] [,2] [,3] [,4] [,5]
[1,]  1.0  0.8  0.8  0.8  0.8
[2,]  0.8  1.0  0.8  0.8  0.8
[3,]  0.8  0.8  1.0  0.8  0.8
[4,]  0.8  0.8  0.8  1.0  0.8
[5,]  0.8  0.8  0.8  0.8  1.0
> # mean vector
> vmean <- rep(0,p)
> vmean
[1] 0 0 0 0 0
> # number of units
> n <- 1000
> # percentage of missing values
> percmiss <- 0.2
> nummiss <- n*p*percmiss
> nummiss
[1] 1000
> # generation of a complete matrix
> set.seed(1)
> x0 <- rmvnorm(n, mean=vmean, sigma=Rho)
> x0
                [,1]         [,2]         [,3]          [,4]         [,5]
   [1,] -0.073045466  0.289240987 -0.166591281  0.9205444587  0.354473551
   [2,] -0.150413417  0.434496098  0.546700045  0.4740084472  0.079937360
   [3,]  0.737168822  0.235422926 -0.216747503 -0.9293641690  0.564164131
   [4,]  0.716212507  0.729066922  1.158403813  1.1035687109  1.001908173
   [5,]  0.541124844  0.479927657  0.163492144 -0.7595194552  0.407340171
   [6,] -0.583583473 -0.628155807 -1.216222400 -0.7723171434 -0.371572790
   [7,]  0.675776186  0.022188149  0.241528234  0.0440938729 -0.547683537
   [8,]  0.133114778  0.142374161  0.292180231  0.8106522901  0.660008559
   [9,] -0.026477811 -0.066207410  0.358790875  0.2960467281 -0.260921533
  [10,]  0.066320473  0.545767936  0.726420298  0.3324791725  0.776765280
  [11,]  0.316101051 -0.135643835  0.290616053 -0.3670038417  0.778930371
  [12,]  1.207285507  0.157397311 -0.145327452  0.5764101112  0.261225493
  [13,]  1.822844112  0.731259336  1.057268819  0.7613309446  0.416406114
  [14,]  0.781458529 -0.110173992  1.352444105  0.7655650224  1.668649523
  [15,] -0.367795521 -0.897947543 -0.307324719 -0.9981910075 -1.141091748
  [16,] -0.083045534 -0.411630406 -0.212889925 -0.1801378023 -0.477026035
  [17,] -0.400236530 -0.206373856  0.380936380 -0.8272799279  0.119700669
  [18,]  0.702927423  1.029460191  0.417992304  0.7195049324  0.673477701
  [19,]  1.075263213  1.858060451  1.836833373  1.6310306103  2.027539041
  [20,] -0.708141615 -1.528813729 -1.214276424 -1.5055677477 -1.169615538
  [21,] -0.913733886 -0.617462683 -1.043674020 -0.5656248587 -0.929036626
  [22,]  2.540101658  2.070268091  2.156789054  1.9215596793  2.502038777
  [23,] -0.451954064 -0.374097878  0.472892011 -0.4586443340 -0.260387566
  [24,] -0.391980907 -0.359417022 -0.341135124  0.0046958801 -0.295616463
  [25,] -0.116440352  0.710455926  0.013867875  0.0295305823  0.065024042
  [26,]  0.189109828 -0.162503235 -0.146434747 -0.4344520673 -0.274622308
  [27,] -0.360525461 -0.650791648 -0.149737704 -1.0664765043 -0.250333184
  [28,] -1.672362873 -1.119842239 -1.221495579 -1.2768672750 -1.010686636
  [29,] -2.132164757 -0.749853142 -2.020635505 -1.4833342927 -1.775091838
  [30,] -0.839873409  0.429312311 -0.496317387 -1.0793480293 -1.237798044
  [31,] -0.536717185 -0.746347187 -0.880291479 -1.1536703650 -1.403259451
  [32,] -0.548633962  0.379433128 -0.345632262 -0.6869278575  0.768178831
  [33,]  0.674646007  0.377809111  0.957903349  0.8809555996  0.207601428
  [34,]  1.175565974  0.074915403 -0.448086416  0.1243894934  0.281780925
  [35,]  1.820310276  0.835467215  0.992527037  0.7536471162  0.638781240
  [36,]  1.606981246  1.974754338  2.550588980  2.0819750642  2.162704256
  [37,] -0.862682158  0.127993892 -0.213664221 -0.9681917440 -0.079009129
  [38,] -0.332655254  0.393325321 -0.604260322 -0.4540545819 -0.675826795
  [39,] -0.362644346 -0.103655913 -0.610688778  0.0879131238 -0.823712093
  [40,] -0.658298647  0.454879550 -0.643926567 -0.0053850776 -0.360048161
  [41,]  0.525545766  1.097742792  1.051999616  0.1944692304 -0.679532703
  [42,]  2.463702209  1.645035048  1.588802933  1.3407215403  1.574841411
  [43,] -0.242155424  0.019496047 -0.347640102 -0.7814199085  0.273130386
  [44,]  0.857571341  0.039847724 -0.382567514  0.4651397471  0.157926170
  [45,] -2.011655575 -1.235583343 -1.518415618 -1.3890225239 -1.753771624
  [46,]  0.911128838 -0.043347486 -0.613268163  0.1929268493  0.222434990
  [47,] -1.724040593 -2.575130090 -1.569597615 -1.0280267186 -1.309874551
  [48,]  0.073890394  0.368603918 -0.412803170  0.6082908689  0.115407341
  [49,]  1.037027873  1.183175965  0.820652407  0.3277389358  1.240802487
  [50,] -1.518158923 -0.867295792 -0.737997384 -0.6979495528 -0.167292633
  [51,]  0.356240242  0.477410848  0.264169380  0.1845610992  0.606379737
  [52,]  0.277194176 -1.310112027  0.020722187 -0.0678328793 -0.425600235
  [53,]  1.339982699  0.740604683  0.787520305  1.2981221518  1.683717550
  [54,] -0.716238363 -1.025817015 -1.368798218 -0.9850530349 -1.257315038
  [55,]  0.553516869  0.845686767  0.288352968  1.8540584868  0.739085583
  [56,]  0.244495305 -1.284676117  0.070437041 -0.8495914820  0.150399959
  [57,]  0.188628144 -0.171673395  0.602805389 -0.3030214101 -0.249079685
  [58,] -0.218647360 -0.069772828  0.651745291  0.4230032269  0.678566597
  [59,]  0.012215556  0.354999838  0.295875800 -0.4511597476  0.982019683
  [60,]  0.540395977  0.822655436  0.907419262  0.4576554858  0.343504342
  [61,]  1.389239734  0.521210733  1.871185584  0.8180112103  1.729332972
  [62,]  1.144392361  0.505213689  0.721779190  0.0099182759  0.612563185
  [63,]  0.465708232  0.043299799 -0.204105648 -0.2942840079 -0.017074444
  [64,]  0.370589189 -0.323994521 -0.161671719 -0.6863113564  0.113509068
  [65,]  1.300086419  1.384672170  1.079521215 -0.1210198902  0.930745225
  [66,]  0.232322808 -0.129712648  0.104577974 -0.3580758610  0.332094001
  [67,] -0.541534694 -1.096965559 -0.559579647  0.2149431769 -0.544745845
  [68,]  0.584594081  0.680224267  0.258865460  0.0993349745  0.020011266
  [69,] -0.512646145 -1.318993117 -0.733291666 -0.9728685549 -1.856289815
  [70,]  0.012943671  1.052657047  0.557458202  1.0022399247  1.487104991
  [71,]  1.914030305  1.557774280  1.424815082  1.1686685251  1.960545266
  [72,] -0.645684690 -1.437168253 -0.981934147 -1.7704912497 -0.999651100
  [73,] -1.964631204 -0.217667392 -1.089530497 -0.9975994084 -0.881028486
  [74,]  0.249015099  0.278585758  0.229218652 -0.2808260280 -0.634459576
  [75,] -0.869312268 -0.571183417 -1.063563463 -0.7262569968 -1.217664862
  [76,]  0.500749190  0.562090981  0.439227529  0.4311618854  1.293149526
  [77,]  1.068420057  1.224428090  0.314510300  0.8008769050  1.243834525
  [78,] -1.485552746 -2.412554628 -1.306055883 -2.3121975703 -1.823041917
  [79,]  1.626399805  1.309608240  1.522496270  1.1714049341  0.985022575
  [80,] -0.136603248  0.989134677  0.296891342 -0.0430531531  0.663701524
  [81,]  0.980386438  1.347644422  0.230213242  0.3250804308  0.313741683
  [82,] -0.262105736 -0.258068972 -0.226337606  0.5506950609 -0.406055236
  [83,] -0.138684162  0.326732797  0.537923154 -0.3103888240 -0.192313439
  [84,]  0.737041498  0.958024778  0.390547033 -0.1366412599  1.267213413
  [85,]  0.471915087 -0.487555171 -0.198966640 -0.9567258759  0.084920322
  [86,]  0.039558163 -1.413719411 -1.030138884 -0.9682482877 -0.986116465
  [87,] -1.709162148 -0.575811471 -1.484890140 -0.8110284699 -0.534658357
  [88,]  0.125029574  0.612583541  0.202165132 -0.0759772978  0.502725979
  [89,]  0.568138409  1.554890130  0.753988318  1.1435447684  0.853905948
  [90,] -3.557584019 -2.823287618 -2.402008086 -2.1064419713 -3.260041419
  [91,] -0.661034223 -1.361425437 -1.427814987 -1.7868086852 -1.741319078
  [92,] -0.615925628 -0.413321067 -1.579319772 -1.0902823229 -0.401513593
  [93,]  0.937652079  2.108638656  1.697371271  1.4065712394  1.142440815
  [94,]  1.010974644  0.570349888  1.166898513  1.5480125115  1.370565290
  [95,] -0.603986231 -0.964276079 -0.289331862 -0.0431206220  0.363890532
  [96,] -0.447003761  0.305654071  0.247120628  0.6766493526  0.130214608
  [97,] -0.170396250 -0.523478218 -0.242004820 -0.1725540192  1.040592507
  [98,]  1.022952563 -0.145721503 -0.537911798 -0.9534928553  0.158998622
  [99,]  0.867674379  2.377124424  0.959333494  1.4050820185  3.059401247
 [100,] -1.275810704 -0.642343101 -1.274909333 -0.6244156384 -1.170426849
 [101,] -0.093575571 -0.260910271 -0.657308595 -0.1230963347  0.315310886
 [102,]  0.718242427 -0.608496632 -0.106230892  0.5239089225 -0.492896871
 [103,] -2.664989199 -1.952757662 -1.966771950 -1.5129717701 -1.714765897
 [104,]  0.426314813  0.133895914  0.490097430  0.1591038388  0.855016144
 [105,] -0.705047671 -0.245314701 -0.771021534 -0.2822814518 -0.396650359
 [106,] -0.696907385 -0.008066927  0.584240747  0.3611644595  0.120495438
 [107,] -0.133839684  0.922275389  0.434800521  0.1973410752  1.133717780
 [108,]  0.011737463  0.491576759  0.929120013  0.6252318340  0.218605082
 [109,]  0.385577321  0.731521022  0.802335321  0.5810210675  1.162327890
 [110,] -0.682683764 -0.966424726 -0.412943248 -1.6379097876 -0.477946811
 [111,]  0.321511764 -0.001302960 -0.400337542 -0.0773828871  0.792369269
 [112,] -1.381992588 -2.092256164 -0.686235599 -1.2736757455 -1.277958222
 [113,] -1.098166668 -0.564727871 -0.241035597 -0.8173692943 -0.825976330
 [114,]  0.799295271  0.198173165  0.237352637  0.0290063159  0.711549468
 [115,] -0.110858401  0.713554825  0.694079524  0.1246410107  0.713183606
 [116,]  0.588683708  0.404812028  1.052923701 -0.7302042170 -0.373581669
 [117,]  0.198940589  0.889527442  1.523206364  1.5649134472  1.032911618
 [118,]  0.655059611  0.197314969  0.471835529  0.4303626025 -0.078242576
 [119,] -0.831513455 -0.760650820 -0.077001174 -1.1641034137 -1.645907397
 [120,]  0.233876848 -0.474705742 -0.304740562  0.2948887732 -0.450970169
 [121,]  0.518840913  1.343275381  0.907637094  0.9138460483  0.610248520
 [122,] -0.711302081 -0.872251258 -0.302840344  0.6922568056 -0.103790287
 [123,]  0.518522442  0.593766442  0.272742388 -0.1805291753  1.641640304
 [124,] -1.153969712 -1.098030189 -1.766051121 -1.0754041830 -1.075089207
 [125,]  0.589216259 -0.095659039  1.501609448  1.4921837652  1.011882568
 [126,] -0.360837548  0.450966932  0.021203756 -0.0115840880  0.740821687
 [127,] -1.838368018 -1.517866421 -1.616242574 -1.2804088637 -1.992648356
 [128,] -0.294311392  0.340403372  0.228279240 -0.4153135434  0.270318581
 [129,] -1.970879157 -1.035239079 -0.564091451 -1.1777000695 -0.899249338
 [130,] -1.729851265 -0.638167505 -1.844831020 -1.1620529326 -1.131462396
 [131,] -0.007560559 -0.403082012  0.783474989 -0.6742833319  0.078848226
 [132,] -2.214354325 -0.898567178 -0.671718188 -1.3847490921 -0.584436670
 [133,] -0.581981720 -0.293371924 -1.107151903 -1.1640553723 -1.522251747
 [134,]  0.268481270 -0.186035502  0.720447123  0.4445720681  1.391981417
 [135,] -0.962201908  0.084007638 -0.680305631 -1.0958831805 -0.188220532
 [136,] -1.925871641 -1.756738730 -1.612703242 -1.1905250478 -1.731576574
 [137,]  0.216981223 -0.801245740 -0.168165068 -0.2010576302 -0.741666025
 [138,] -0.066765266 -0.168531433  0.553975137  0.8208088447 -0.340537365
 [139,] -0.034631247 -0.484536326 -1.330552385 -0.7888462655 -0.244563705
 [140,] -0.372930836 -1.530059322 -0.178298089 -0.1448763352 -0.574004987
 [141,] -0.304728339  0.893419604 -0.028542839  0.0054370886 -0.490719422
 [142,] -0.657040377 -0.737103080 -0.244637032  0.5526968112  0.728393787
 [143,]  1.046041832  0.924574521  0.238391526 -0.2028087835  0.198045513
 [144,] -1.027457956 -0.088909833  0.793742929  0.1099866128  0.541518924
 [145,]  0.347029734 -0.220149468  0.907933253  0.0931339459 -0.308091114
 [146,] -0.108549916 -0.819288306  0.246143776  0.0841582502 -0.298812985
 [147,] -0.594660368  0.042495053 -0.851351804 -0.8162063986 -0.186498911
 [148,]  0.427996894  1.043540916  0.541004492  1.1641840374  0.851444747
 [149,] -1.828868211 -1.422001684 -0.251130944 -0.5158721360 -1.257289029
 [150,]  0.183005062  1.247131510  0.421824825  1.5906184240  1.577119944
 [151,] -1.988153109 -1.715783457 -1.896826856 -1.0391750556 -1.914845105
 [152,] -0.543037897  1.271017209  0.816928373  0.7324721359  0.070098765
 [153,] -0.204151571  0.078021643 -0.772093835 -0.2546778052 -0.120512393
 [154,]  1.604641761  1.134780787  1.421042351  0.9104648234  0.350083981
 [155,] -0.062661732 -0.655258952  0.504641564  0.7228706507  0.061196843
 [156,] -0.123720752  0.801140481  0.377261049  0.1422059745  0.817434785
 [157,] -0.074035363  0.779608077 -0.110988891  0.4408233130  0.664413967
 [158,] -0.969355835 -0.194163754 -0.422113121 -0.0700081189 -0.724881704
 [159,]  0.623144859  1.280222532  0.737397422  1.0301885143  0.563259263
 [160,] -1.643500378 -1.188028552 -1.730975134 -2.3441587432 -0.660294917
 [161,] -1.296525454 -1.627094203 -0.365341498 -0.8157498035 -1.078607024
 [162,] -0.273841603 -0.384765492  0.251458511  0.1311589177 -0.966433521
 [163,] -0.133936556  0.033059785  0.006874226 -1.3761688281 -0.397236208
 [164,]  0.851542656  0.322561072 -0.798187825 -0.7777915453  0.185854590
 [165,]  0.353377172  0.861119361  0.562620429  0.4674411681  0.513353225
 [166,]  0.015770294 -0.626363181  0.992144138 -0.6900492331 -0.066166628
 [167,]  0.368263935  1.416725658  1.064020747  0.3595892415  0.703557922
 [168,]  1.058901186  1.537804735  0.672867809  0.0714676313  0.097837263
 [169,]  1.626021611 -0.196950725  2.095606525  0.6121574542  0.525826150
 [170,]  0.003544809  0.350505715  0.068510508 -0.9417353883  0.091188009
 [171,] -0.637157514 -0.543633364 -1.299858852 -1.8989471479 -0.983748418
 [172,] -1.503192277 -1.423405458 -1.507432093 -1.2588820386 -1.220069539
 [173,]  0.689473657  0.774594339 -0.021875189  0.1953425774  0.495093186
 [174,]  0.547567350 -0.103066503 -0.837750372  0.0256965612 -0.131250016
 [175,]  0.968296242  0.329196401 -0.103022994 -0.0209470055 -0.050362254
 [176,]  0.477906638  0.473605633  0.804288965  0.5378965802  0.230721651
 [177,] -0.126468255  0.578033685  0.266240206  0.3759534847  0.787749173
 [178,]  1.373749806  0.163655969  1.325470790  0.2026006392  0.709331979
 [179,]  0.529257985  0.305973626  1.053339792  0.1351364719  0.725209445
 [180,] -0.757201435 -1.167843960 -0.208047807 -1.6852075096 -0.986575844
 [181,] -1.186152280 -0.409913072 -0.378562737 -0.9971296734 -0.205701084
 [182,] -0.576987798  0.179743104 -0.008700227  0.2048203598 -0.534763143
 [183,]  0.071515328 -0.178107418 -0.628032352  0.0971551995  0.822122473
 [184,]  0.293698473  0.494163513  0.891763773  0.5996893686  1.452700467
 [185,]  1.193225313  1.901665403  1.019570312  0.3564303617  1.051960169
 [186,] -0.683686412 -0.720584266 -0.354947781  0.1474479608 -0.116411057
 [187,]  0.348398849  0.393710855 -0.092496695 -1.0899524997  0.340298279
 [188,]  0.832436452 -0.111511761 -0.743557818 -0.3019953546 -0.555550622
 [189,]  0.238403968  0.559392074  0.644507618  0.3621990614 -0.160658548
 [190,]  1.771656111  2.010945074  2.415031278  1.1871906046  1.619979341
 [191,]  1.072847934  0.486959155  0.773736674  0.6349049938  0.478885132
 [192,] -0.297691358  0.058390691 -0.190239431 -0.5816484306 -1.374712317
 [193,] -1.191019193 -0.844380327 -1.959941226  0.1533116807 -1.501250837
 [194,] -0.999063465  0.171960908 -1.459301742 -0.1494405660 -0.633804843
 [195,] -0.862300865 -0.673472293 -1.494813238 -1.3818385525 -2.406451615
 [196,]  0.216165570  0.815986591  0.871834328  1.5524882391  0.674863321
 [197,]  0.612623777  0.438711213  0.187549542  0.7401924265  0.612881342
 [198,]  0.292334403 -0.130229276  0.216499986  0.5839161102  0.536974679
 [199,] -0.045696525 -0.129084393  0.399483969  0.6392390271  0.224291103
 [200,] -1.355622637 -1.609361723 -1.403024597 -1.8786205082 -1.527363978
 [201,]  1.038291692  1.027990912  0.141296277  0.6249619035  0.561754551
 [202,] -1.708951827 -0.602773992 -1.820619695 -1.5229577388 -0.519004417
 [203,] -1.356757018 -1.211637569 -1.840223782 -1.7637621854 -0.957939771
 [204,] -0.450148459 -0.636583552 -0.968683827 -0.8628155073  0.538484517
 [205,]  0.587971125  1.080127363  1.085047244  1.0753157333  0.865824195
 [206,] -1.294278224 -1.185671432 -0.398175271 -1.3193211073 -0.498284525
 [207,] -0.582895094 -0.522448113 -0.697395136 -0.4472111882  0.048000044
 [208,]  1.081199790  0.774323017  1.267362443  1.6188715287  0.875435873
 [209,]  0.455218488  0.369232370 -0.192522283 -0.1695727126  1.103356659
 [210,]  1.165784537  1.103534187  0.837661962  0.9887374947  0.839577215
 [211,]  0.806457230  0.887592311  0.335781092  1.8615339856  1.146323031
 [212,]  0.416761825  1.071526056  0.248587096  1.2943587883  0.352736225
 [213,] -1.682223997 -0.033969074 -0.137673463 -0.9903065095 -1.274760584
 [214,] -2.290700033 -1.590580870 -2.290432151 -1.8345155291 -1.397122681
 [215,]  0.986885681  0.237587196  0.549009019  0.7183021710  1.373013082
 [216,] -1.682487474 -1.971283137 -2.079195402 -1.0052805513 -1.280699896
 [217,]  0.752913701  0.344640920  0.583423157  0.5078998038  0.418154505
 [218,]  0.062562288  0.905547412  0.159691990  0.6393454824  0.414788527
 [219,]  1.444190071  0.965532659  0.496448029  0.6433765691  0.591428123
 [220,] -0.843468020  0.850684407  0.567368897 -0.2512546015  0.262425755
 [221,]  0.279413522 -0.335351024  0.837541236  0.0602149046  0.253335515
 [222,] -0.186520261 -0.812170059 -0.853002834 -0.3892929714 -0.109950768
 [223,]  0.115446190  0.398136630  0.232235829  0.3263330144 -0.544970422
 [224,] -0.444204235 -1.100201437 -0.955272231 -0.7938832091 -1.483933350
 [225,] -0.226205733 -0.378401771 -0.503019545 -0.4297150404  0.375308238
 [226,] -2.204191189 -1.737507314 -2.746679330 -1.9426821309 -1.865371362
 [227,]  0.205989068 -0.913987551 -0.873810539 -1.1087989595 -0.403348678
 [228,]  0.584008307 -0.468117846 -0.122507061  0.6789144651 -0.238144419
 [229,]  0.877484160  0.745105061 -0.012877024  1.1151226436  0.926526413
 [230,] -0.709494124 -0.895441488 -0.665763749 -0.1271030979 -0.743503274
 [231,] -1.684836930 -0.910575760 -0.501460863 -1.3650401274 -0.953065889
 [232,] -1.153453247 -0.554634448 -0.666127410 -0.6219360647 -0.885184610
 [233,] -1.321129998 -0.614170777 -0.956873863 -1.0874930073 -2.440874611
 [234,] -1.393085295 -0.481429191 -1.004544531 -1.3629874087 -1.019082333
 [235,]  0.514101676  0.457814635  0.904158388  1.3622251246  1.123954591
 [236,]  0.762458553  0.057654461  0.582778050 -0.2335748016  0.142913909
 [237,]  1.635645753  0.652551348  0.521749906  0.3970200064  1.003209968
 [238,]  2.080113941  1.322519654  1.021356218  2.0656216642  0.789893959
 [239,]  0.219883094 -0.474584899 -0.743092945  0.2586890991 -1.091031072
 [240,] -1.103793410 -0.959001219 -1.163750344 -1.6984791743 -1.252783164
 [241,] -1.625324518 -0.068932032 -1.759396418 -1.8708817621 -0.616999058
 [242,]  1.248052959  0.754582896  0.749738549  1.1664806460  1.467757616
 [243,] -0.443512680  0.851194035  0.355464319  0.1160462049  0.833594867
 [244,]  1.381093350  1.532331507  0.830603007  1.3079286533  1.093066305
 [245,]  0.369853197  1.387010368  0.673478302  0.5766962730  0.837715161
 [246,]  0.867920392  0.377995244  0.669843679  1.8592632272  0.661161193
 [247,] -0.382912110  0.077987218 -0.070867644 -0.4911508517 -0.734623653
 [248,]  0.220679778 -0.105319431  0.057198977 -0.2887529509 -0.897314712
 [249,] -0.393023192  0.645175165 -1.077647408 -0.8643419991 -1.021424635
 [250,] -0.381570227  0.399526716 -0.286843967 -0.3325735151 -0.794569966
 [251,]  1.248598698  1.682422721  2.230209900  1.8073607175  0.830324401
 [252,] -0.527075955 -0.030406980 -0.306560021 -0.1789379098 -0.888947220
 [253,] -1.285095252 -1.508645871 -1.509609024 -1.4158474194 -1.279845278
 [254,]  0.278730287  0.564552015  0.053552481 -0.1020008601  1.004037159
 [255,]  1.874175569  1.741343942  2.189954996  0.9924455085  2.345964077
 [256,]  1.224065299  0.812885352  0.954790686  0.7030132142  0.626017687
 [257,]  0.438479251  1.475488604  2.101468478  2.0779672065  1.219326660
 [258,]  0.946799469  1.076434295  1.507518543  1.6557120006  1.177482054
 [259,]  2.552355402  2.041926117  2.276622939  2.5842691360  3.681701610
 [260,] -0.039174002 -0.313827871  0.184348072 -0.1965138750  0.269083952
 [261,]  0.492156012  0.928152938 -0.089680004 -0.1996045366  1.040585072
 [262,] -0.454497562 -0.967763021 -1.035454054 -0.8022705690 -0.291186068
 [263,]  0.161142983  0.997039563  0.505998348  0.4845482673  0.390007082
 [264,]  0.007663172  0.065755405  0.657936743 -0.4579696669  0.626761571
 [265,] -0.372574411  0.112834553 -0.241867422 -0.8176094984 -0.060602918
 [266,] -1.241533353 -0.453186568 -1.326203581 -1.7555496989 -1.337955000
 [267,] -1.102280240 -1.215831330 -0.952714738 -1.1127020040 -1.030153395
 [268,]  0.109428064 -0.557652752  0.302707620 -0.0383971713 -0.054350146
 [269,] -1.120517122 -0.344597804 -0.458376556  0.1690379650  0.412109777
 [270,] -0.034908417 -1.083438113 -0.941544587 -0.6255729699 -1.059431431
 [271,] -1.144763263 -0.073390262 -0.396812513 -0.1525267947 -0.965321294
 [272,] -1.090137860 -1.461680142 -1.308807390 -0.8353750881 -1.302357743
 [273,] -1.371264678 -1.511118631 -1.568385813 -1.3128596644 -0.165020170
 [274,] -1.484893041 -1.689509374 -1.820246375 -1.2590551355 -1.367890479
 [275,]  0.950087569  0.710928579  1.225391495  1.1593932812  1.309647425
 [276,]  0.767794247  1.157254948  0.624661401  1.0761135831  0.588245234
 [277,] -1.196592061 -1.437457537 -1.208847269 -1.2266314358 -0.634182039
 [278,] -0.120979846 -0.379575611 -0.499428359  0.5788134321 -0.203557760
 [279,] -0.826815908 -0.460640061 -0.226609263  0.1042132611 -0.306316998
 [280,]  0.276154373 -0.238717712  0.582303283  0.2708103212  0.555710594
 [281,]  0.723686562  0.111916090 -0.094458478 -0.3112462465 -0.225875614
 [282,] -1.827181753 -1.252616573 -2.074414185 -2.1985953895 -1.716508000
 [283,]  0.815263693  0.385291360  0.109324331  0.6298083194  0.173173258
 [284,]  1.109151419  1.193212970  1.647487027  1.7386265305  1.734128705
 [285,]  2.539786540  2.249282700  2.942537981  3.0155515540  2.696096750
 [286,] -0.529868903 -0.896753451 -0.345340333 -0.6799392997 -0.308650435
 [287,]  1.120785006  1.778982034  2.346136571  1.7980936609  1.698733393
 [288,]  1.647791555  2.606383665  1.595493606  2.2465830395  2.335588226
 [289,] -1.296467927 -2.823074938 -1.515740092 -1.1637739077 -1.951403622
 [290,] -1.608024161 -0.625248506 -2.280985838 -0.9261423817 -1.150910374
 [291,] -0.348880981 -0.026041579 -0.030007896  0.0560952486  0.001099704
 [292,]  0.810101130  1.165072132  1.670077476  1.3478428973  1.718976071
 [293,] -0.362798932  0.020890766 -0.014759902 -0.5722591463 -0.605187440
 [294,]  1.037806293 -0.168568804  0.626561646  0.0823541096 -0.290134490
 [295,] -2.160505644 -2.013860870 -2.346460514 -1.8697374203 -1.039062310
 [296,] -0.336551455  0.699972801 -0.153955934 -0.4962161968 -0.204007338
 [297,] -0.305817699 -0.240932965 -0.015569512 -0.0056251029  0.296764888
 [298,]  0.590929005  0.696911765  0.408693344 -0.0112567530  0.550539846
 [299,]  0.843548349  0.478507789  0.485451126  1.1487923299  1.258490379
 [300,] -0.199136224 -0.425726011  0.488656952 -0.8064984191 -0.658125587
 [301,]  0.513533493 -0.280430056  0.533004163 -0.2874498528  0.374409199
 [302,]  0.735920845  1.216112862  1.411742250  0.7710308117  1.092367526
 [303,] -1.792507979 -1.105110605 -1.528817194 -0.8961802872 -0.993883648
 [304,]  0.608742712  0.629709063  1.139354447  0.6450502189  1.543171077
 [305,] -1.288110628 -0.275857387  0.509107678 -0.9444634866 -0.792637601
 [306,]  0.116950357  0.335769058  0.188001585  0.0881529703  1.156234529
 [307,]  0.273229472  0.707024765 -1.110589052  0.7233205459  0.805389195
 [308,]  0.437760405  0.553029251  1.399436573  0.6720227395  1.117875157
 [309,] -0.833394169 -1.166989801 -1.226820647 -1.7311941987 -2.052480970
 [310,]  0.262203216  0.392910807  0.047330815  0.5543712095  0.484497582
 [311,]  0.527104439  0.701634295  1.258711112  0.8201560247  1.037925924
 [312,]  0.494156007  1.048478225  0.322593228 -0.1658847367  0.070868292
 [313,]  0.006318675 -0.220444895 -0.175793661  0.1973716683 -0.446803689
 [314,] -0.450297881  1.311094756  0.602653850  0.8776715699  0.268439791
 [315,] -0.643993018 -1.648794924 -0.525760720 -0.4766245843 -1.091343663
 [316,]  0.211767844  1.049366098  0.658437616  0.3353082870  0.613568523
 [317,] -1.374903043 -0.248531823 -1.626250122 -1.2218145040 -0.470013422
 [318,]  0.620193198 -0.670054545  0.373772743  0.2576499129  0.089081101
 [319,] -0.796751822 -0.899524275 -0.448845198  0.0227839578 -1.182434579
 [320,] -1.504275325 -0.302054164 -1.574469997 -2.2089859942 -1.026723926
 [321,]  0.041415804 -0.106823960 -0.503131219  0.0407925032 -0.191842660
 [322,]  1.261002692  0.983511642  1.159017196  0.9944806751  1.031411179
 [323,] -0.298991837 -1.661649773 -0.407219313 -1.2413059949 -0.476393598
 [324,]  1.087033339  0.298569619  0.137635980  0.4604776720  1.208081407
 [325,] -0.263757336 -0.242423117 -0.553324613 -0.5449352972 -0.371504064
 [326,] -1.578937112 -0.316222557 -1.018150687 -1.7630062438 -0.875938353
 [327,] -0.894122161 -1.587760511  0.130291421 -1.2859933942 -1.391684248
 [328,]  0.334410138  0.594654961  0.044978863  0.2342379044 -0.360337104
 [329,]  1.425750288  1.138439290  1.043708389  1.3331046454  1.445286155
 [330,]  0.135510405  0.678164099  0.020605580  1.4601903283  0.667360027
 [331,] -0.587854363 -0.791169855 -0.670477597 -1.0643130070 -0.543452352
 [332,] -0.316719804 -0.807261590 -0.941064890 -1.3063345474 -0.323258168
 [333,] -0.345956016 -0.589734770 -0.741686935 -0.3796858389 -1.110241257
 [334,] -1.227050890 -1.214732626 -0.729988307 -0.2147989654 -0.248810507
 [335,] -0.739410622  0.147488989 -0.999064295 -0.7070611162 -0.814497229
 [336,]  0.640800833 -0.213567218  1.099462554  1.1093910236  1.006808152
 [337,]  0.827773417  1.381537962  1.082143180  1.2932513977  0.943952405
 [338,] -0.267872488 -1.343685741 -0.639193396  0.0549149725 -0.353281895
 [339,] -0.798357293 -0.681933919 -0.501894979  0.6955969683 -0.333649871
 [340,] -1.656003678 -2.303501150 -2.218211733 -0.8210622972 -1.748346592
 [341,]  0.749443889 -0.122759328 -1.015982050  1.0051584393 -0.459679843
 [342,] -1.367156344 -1.097808574 -1.194444373 -1.8198736467 -1.816259013
 [343,]  1.407184671  0.466235248  1.153316461  1.5467828013  0.434597296
 [344,] -0.935884889 -1.511003112  0.229900601 -0.9579360373 -0.788776978
 [345,] -0.348551621  0.593241286  0.981877877  0.3631182677  0.082311455
 [346,] -0.209617320  1.203703531  0.846284315  0.5187160490  1.075641125
 [347,]  0.986705783  0.199282502 -0.142190448  0.8367782259  0.716005723
 [348,]  0.171223835  1.805952573 -0.744541584  0.3918142137  0.904731861
 [349,]  1.929616453  1.703102115  1.333035227  1.6195016813  1.516048861
 [350,] -0.119234501 -0.499223202  0.436937259 -0.2640670479 -0.238639961
 [351,] -0.375512401 -0.483577015 -1.372316521 -0.6793781780 -0.214889041
 [352,] -0.134386972 -1.253146304 -0.975761113 -1.7774409325 -0.239153695
 [353,]  0.458540459  0.810010649  0.204386708  0.5518796048  0.893218271
 [354,] -0.108782043  0.375470523  0.288402659 -0.7153865551  0.134316217
 [355,] -1.799845163 -0.812601884 -0.935136018 -0.2963022046 -0.556830232
 [356,] -0.992268102 -0.795485872 -0.642812220 -1.1782239728 -1.029217497
 [357,] -2.122334300 -2.253066069 -1.801166246 -1.5748705196 -2.267881556
 [358,]  0.170656092 -0.337235685  0.100546723  0.0251772100 -0.205846949
 [359,] -2.498212698 -2.342919985 -2.764631917 -1.0192891327 -1.789709921
 [360,]  1.596912317  0.079838086  1.393657494  1.2121844452  0.392170002
 [361,]  1.080765679  1.021420025  0.695799991  1.4353596541  0.636406117
 [362,]  1.539550574  0.097966972  1.219604647  0.3983749604  0.791143441
 [363,]  0.178258149  0.150768011  0.170922551  0.6207596423  0.224372021
 [364,]  0.982158822  0.425183028  0.452378847  0.3505094258  0.184469022
 [365,]  1.612947256  1.964015011  1.883934696  1.9653936216  2.294873179
 [366,]  0.477952401  0.387921283  1.012706547  0.2896255449 -0.132610787
 [367,] -1.090460110 -0.983852929 -1.332352266 -0.0569137687 -0.956738836
 [368,]  1.427945818  1.993720105  0.747171214  1.0930439961  0.670247560
 [369,]  2.849880645  1.061856472  2.071399179  1.9332600168  1.960792067
 [370,]  1.036633993  0.852513395  0.850373490  0.1790693046  0.780539085
 [371,]  0.415209870  1.852955719  0.910322618  0.9586778002 -0.409872296
 [372,] -1.495868609 -1.338984701 -1.164757070 -1.1562318119 -0.614363772
 [373,] -0.595927009 -0.623328196  0.042188505 -1.4329472223 -0.522572752
 [374,]  0.743865919  0.838364205  0.265680322  0.1638224162  0.276247463
 [375,] -0.888765501 -0.885872449 -1.301427823 -0.7839011919 -0.591281339
 [376,] -0.879281044 -1.127985013 -1.359333146 -0.8035309262  0.140293644
 [377,] -0.322989034 -0.357943493  1.170654033 -0.9485315449 -0.009479694
 [378,]  1.011204009  0.499982390  1.243393186  1.0742336191  0.737875538
 [379,] -1.130704480 -0.464044707 -0.752109822 -1.0048602958 -0.540997638
 [380,]  0.123365358 -0.17113