Last data update: 2014.03.03

R: Imputation of missing data by alternating Nearest Neighbour...
ForImp.PCAR Documentation

Imputation of missing data by alternating Nearest Neighbour Imputation and Principal Component Analysis

Description

This function imputes quantitative missing data by alternating Nearest Neighbour Imputation (NNI) method and Principal Component Analysis (PCA) in a forward and sequential step-by-step process that starts from the complete part of data.

Usage

ForImp.PCA(mat, stand=FALSE, cor=FALSE, r=2, probs=seq(0, 1, 0.1), q="10%", 
tol=1e-6)

Arguments

mat

a quantitative data matrix with missing entries.

stand

a logical value indicating if variables should be standardized (stand=TRUE), or not (stand=FALSE, default) before the imputation process starts.

cor

a logical value. If cor=TRUE, PCA is run on the correlation matrix; if cor=FALSE the covariance matrix is used (default).

r

a positive value (equal or greater than 1) indicating the order of the weighted Minkowski distance to be computed for selecting donors. In particular, r=1 is Manhattan (or city-block) distance, and r=2 is Euclidean distance (default). r=Inf denotes Lagrange (or Chebyshev or sup) distance.

probs

vector of probabilities with values in [0, 1] for computing quantiles of Minkowski 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 Minkowski distances corresponding to the first "X%" distances as computed (and named) by the function quantile with probabilities specified in the argument probs.

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

The ForImp.PCA procedure exploits the PCA method for setting-up so-called “Pseudo-Principal Components” (PPCs). These are artificial, missing-data free variables computed for all the units (i.e. both complete and incomplete) by using common observed variables without missing values. PPCs synthesize the main relevant information in the complete part of data and transfer them to incomplete units in a way functional to the subsequent application of the NNI method. NNI is then applied to PPCs (with a weighted Minkowski distance of order r, r ≥ 1) in order to select donors for incomplete units. All is performed in four stages: Stage 0: data preparation; Stage 1: running PCA and computing PPC scores; Stage 2: application of the NNI method; Stage 3: imputation. Steps 1 to 3 are iteratively repeated until the starting data matrix is completely imputed.

ForImp.PCA does not require a number n of units greater than the number p of variables at every step of the procedure. It can work even in the presence of a starting data matrix with n < p. This further variant is indicated as ForImp with PCO, i.e. Forward Imputation with the Principal Coordinates Analysis. For further details, see the references below.

Value

The imputed data matrix.

Author(s)

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

References

Gower, J.C. (2005). Principal coordinates analysis. In: Armitage, P., Colton, T. (eds), Encyclopedia of biostatistics. John Wiley & Sons, Ltd., New York

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.Mahala

Examples

# EXAMPLE with multivariate skew-normal data (MSN)
# require('sn')
# number of variables
p <- 5
# association matrix
omega <- 0.8
Omega <- matrix(omega, p, p)
diag(Omega) <- 1
Omega
# skewness parameter
alpha <- 4
alpha <- rep(alpha,p)
alpha
# number of units
n <- 500
# percentage of missing values
percmiss <- 0.2
nummiss <- n*p*percmiss
nummiss
## computation of output parameters
## covariance matrix and univariate means and skewnesses
param <- list(xi=rep(0,p), Omega=Omega, alpha=alpha, nu=Inf)
cp <- dp2cp(param, "SN")
cp
# correlation matrix 
rho <- cov2cor(cp$var.cov)
rho
# generation of a complete matrix
set.seed(1)
x0 <- rmsn(n, Omega=Omega, alpha=alpha)
x0
# generating a matrix with missing data
x <- missing.gen(x0, nummiss) 
# imputing missing values
xForImpPCA <- ForImp.PCA(x)
xForImpPCA
# computing the Relative Mean Square Error
error <- sum(apply((x0-xForImpPCA)^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.PCA(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")

# EXAMPLE with n < p: ForImp with PCO
# require('mvtnorm')
p <- 20
n <- 10
sigma <- matrix(0.4, p, p)
diag(sigma) <- 1
# complete matrix
set.seed(2)
xtrue <- rmvnorm(n=n, mean=rep(0, p), sigma=sigma)
rownames(xtrue) <- 1:n
colnames(xtrue) <- paste("V", 1:p, sep="")
xtrue 
# matrix with 10 missing values
xmiss <- missing.gen(xtrue, 10)
xmiss 
# number of missing values per unit
apply(is.na(xmiss),1,sum) 
# imputed matrix
ximp <- ForImp.PCA(xmiss)
ximp
# computing the Relative Mean Square Error
error <- sum(apply((xtrue-ximp)^2/diag(var(xtrue)),2,sum)) / n
error

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.PCA.Rd_%03d_medium.png", width=480, height=480)
> ### Name: ForImp.PCA
> ### Title: Imputation of missing data by alternating Nearest Neighbour
> ###   Imputation and Principal Component Analysis
> ### Aliases: ForImp.PCA
> ### Keywords: multivariate NA nonparametric
> 
> ### ** Examples
> 
> # EXAMPLE with multivariate skew-normal data (MSN)
> # require('sn')
> # number of variables
> p <- 5
> # association matrix
> omega <- 0.8
> Omega <- matrix(omega, p, p)
> diag(Omega) <- 1
> Omega
     [,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
> # skewness parameter
> alpha <- 4
> alpha <- rep(alpha,p)
> alpha
[1] 4 4 4 4 4
> # number of units
> n <- 500
> # percentage of missing values
> percmiss <- 0.2
> nummiss <- n*p*percmiss
> nummiss
[1] 500
> ## computation of output parameters
> ## covariance matrix and univariate means and skewnesses
> param <- list(xi=rep(0,p), Omega=Omega, alpha=alpha, nu=Inf)
> cp <- dp2cp(param, "SN")
> cp
$mean
[1] 0.7301875 0.7301875 0.7301875 0.7301875 0.7301875

$var.cov
          [,1]      [,2]      [,3]      [,4]      [,5]
[1,] 0.4668262 0.2668262 0.2668262 0.2668262 0.2668262
[2,] 0.2668262 0.4668262 0.2668262 0.2668262 0.2668262
[3,] 0.2668262 0.2668262 0.4668262 0.2668262 0.2668262
[4,] 0.2668262 0.2668262 0.2668262 0.4668262 0.2668262
[5,] 0.2668262 0.2668262 0.2668262 0.2668262 0.4668262

$gamma1
[1] 0.5238823 0.5238823 0.5238823 0.5238823 0.5238823

> # correlation matrix 
> rho <- cov2cor(cp$var.cov)
> rho
         [,1]     [,2]     [,3]     [,4]     [,5]
[1,] 1.000000 0.571575 0.571575 0.571575 0.571575
[2,] 0.571575 1.000000 0.571575 0.571575 0.571575
[3,] 0.571575 0.571575 1.000000 0.571575 0.571575
[4,] 0.571575 0.571575 0.571575 1.000000 0.571575
[5,] 0.571575 0.571575 0.571575 0.571575 1.000000
> # generation of a complete matrix
> set.seed(1)
> x0 <- rmsn(n, Omega=Omega, alpha=alpha)
> x0
                [,1]         [,2]         [,3]         [,4]         [,5]
  [1,]  1.3997702246  1.740905120  2.126122910  1.806735795  1.105844380
  [2,]  0.6945391557  0.486987263  1.054385270  0.147232551  0.265429499
  [3,]  0.0963506889  0.046859206  0.324425715  1.091941861  0.924948103
  [4,]  1.5833087432  0.796238948  0.869323764  0.438609958  1.111387571
  [5,]  0.6795276080  0.904965960  0.425291902  0.570364009  0.238987974
  [6,]  0.7307073314  1.762965575  0.328104738  1.155380084  1.418594511
  [7,]  1.4165927789  0.636352733  1.639694414  1.507674146  0.991960068
  [8,]  1.1448306975  0.680608813  0.092404825  1.563944164  0.484800455
  [9,]  1.2154284344  1.384501470  0.326826275  0.958317223  0.545371140
 [10,]  1.2048923363  0.919392866  1.861007627  1.535329959  1.124918601
 [11,]  1.1481853408 -0.593608627  0.493363578  0.174160918  1.169243172
 [12,]  0.2627416734 -0.297756929  0.098524127  0.125394215  0.044491540
 [13,]  0.4088261404  0.337686146  0.224069250  0.682056785  1.491290997
 [14,] -0.8897334430  0.227716368 -0.339363218  0.505376462  0.313932281
 [15,]  1.3570517897  0.640564203  0.977727393  0.785415459  0.978074917
 [16,]  0.8544953271  0.967586085  0.784236396  0.798043074  1.225607456
 [17,]  1.5571990226  1.399569788  1.393668911  1.646169646  1.617987748
 [18,]  0.6489690193  0.327420382 -0.362463720  0.672190044 -0.086148301
 [19,]  1.3825513260  0.831548181  0.607638404  1.142151245  1.265300573
 [20,]  0.3998247806  0.571939627  0.726870943  0.265196677 -0.513671886
 [21,]  0.4026152344 -0.342528717 -0.088703174 -0.557792174  0.181478740
 [22,]  0.9254945018  0.651442044  0.792811727  0.500505337  0.100877853
 [23,]  0.7765367291  0.392487414  1.137392990  1.432482983  0.021438053
 [24,] -0.6903784017  0.378222840  0.557717218 -0.234170759  0.521574309
 [25,]  0.3096630891 -0.016584249  0.118054202 -0.308676393  0.694769944
 [26,]  1.5572532510  0.924402315  1.314817160  1.849894765  1.981529107
 [27,]  0.7934043980  0.814134136  0.509982131  1.080624317  0.931095378
 [28,]  0.5956033763  1.788218537  1.467529075  0.985186703  0.746052865
 [29,]  0.3471820345  0.851673588  0.014705896  0.557952417  0.598690264
 [30,]  0.6766525482  0.525475024  0.649804150  1.018914501  0.050772781
 [31,]  0.7260920983 -0.415665024 -0.007297023  0.319166282  0.080484776
 [32,]  0.5883068508  1.097897468  0.352635176  0.934708414  0.179883910
 [33,]  0.2319538768  0.070674836 -0.265121541 -0.847686270  0.832175071
 [34,]  0.1321912885 -0.018307099  0.125956546  0.630414722 -0.051235932
 [35,]  0.1821017809  1.509363173  1.000249452  0.974804386  0.560209539
 [36,]  0.0269107026 -0.069037554  0.493153299  0.087482661  0.651376020
 [37,]  0.6211647108  0.935775388  0.694111173  0.742373595  1.324025177
 [38,]  1.1627481017  1.694896876  1.366816770  1.465459653  0.064460958
 [39,]  2.7721817242  2.462606433  2.775098467  1.903799231  1.776066754
 [40,]  0.7983977899  0.299328300  0.453502396  0.807814587  0.426485798
 [41,] -0.0448453630 -0.127328026  0.262061066  0.209182687 -0.206389938
 [42,]  0.8559723794  1.120968371  1.043970282  0.841740123  1.006447789
 [43,]  0.7443870987  0.599985044 -0.027722497  0.396297929  0.424235006
 [44,]  0.8173781838  0.548487747  0.192326181  0.207708868  0.630471830
 [45,]  0.1668676881  1.025713353  1.071672701 -0.677318205  0.318370502
 [46,]  0.8193987355  1.144602152  1.507892830  1.029192947  1.466242098
 [47,]  0.1496825249 -0.305873600  0.328864518  0.023361975 -0.194686549
 [48,]  1.7620200106  1.591461148  1.372680664  1.123788161  1.820729107
 [49,]  0.8636662906  0.055828357  1.360165917  1.313912862  1.134362694
 [50,]  0.4101076728  0.126684978 -0.016375026  0.062854109 -0.061034903
 [51,]  0.7621136819  0.759510348  0.521813162  0.384218112  0.948390355
 [52,] -0.0333803441  0.182076814  0.380336361  0.277669554 -0.106827856
 [53,]  0.8199176619  0.212507441  0.404105959  1.382063513  0.479409383
 [54,]  0.0399193520  0.445329178  1.545139148  0.367889225  0.111754913
 [55,]  1.3419565727  1.238832757  0.748588647  0.590827959 -0.089418633
 [56,]  0.9216801580 -0.352515495 -0.067369198  0.231206239 -0.113681520
 [57,]  0.1122608235 -0.620081478  1.022697369  0.957583908 -0.528631959
 [58,]  0.0061941965  0.842819104  0.193955877  0.563884926  0.186765856
 [59,]  1.2422034905  0.762913912  1.658755985  0.409471993  1.131579336
 [60,]  0.0442327068 -0.089138795  0.023821715  0.079006411  0.405394831
 [61,]  1.0140762553 -0.654174616 -0.902998902  0.418304960  0.568907575
 [62,]  0.2686845246  0.279305563  0.801180715 -0.019078581  0.065612056
 [63,]  0.4417461372  0.374570408  0.440606672 -0.221946328 -0.207503323
 [64,]  0.9811509803  0.736836709  0.746702898  1.385349070  0.897876390
 [65,]  0.5914096642  0.722215277  0.503920145  0.995708827  1.240568689
 [66,]  0.5898124013  0.926265023 -0.319305190  0.012638943  1.203919673
 [67,]  0.4464647666  1.244917729  1.270479185  2.096825926  0.638677828
 [68,]  2.4088506883  1.618998936  1.014389418  2.141835029  1.995003672
 [69,]  0.1269219986 -0.194556145 -0.180184294  0.610158352 -0.050923979
 [70,]  1.2437658548  0.518990624  0.121039409 -0.071895677  0.285815188
 [71,]  0.3708355214 -0.255029238  0.572014816  0.146332697  0.369656055
 [72,]  0.0736765837  0.759007933  0.019176391 -0.270291995  0.910808867
 [73,]  0.3286740357  0.341672890 -0.115416065  0.071660090 -0.236141063
 [74,] -0.1996279844  0.080423324  0.414249086  0.436104623  0.148874116
 [75,]  0.0733043831  1.028060597  1.238553336  0.013221449  0.402626256
 [76,]  0.4576312546  0.700058976 -0.161745099  0.171730148  0.842873759
 [77,]  0.4917420262  0.937450012  0.043692170  1.355425039  0.546198901
 [78,]  0.7447294802  1.538360445 -0.184665144  0.960592272  0.876869120
 [79,]  0.5678512175 -0.238703385  0.969864592  0.587239796  0.821510975
 [80,]  0.2493369910  0.084925071  0.656449207  0.813345111  0.911124678
 [81,]  1.1161737417  0.858423347  1.849207462  0.981289074  1.731462696
 [82,]  0.0608606010  0.193696586  0.055499439  0.526905648 -0.764655677
 [83,]  1.2780445956  1.315056382  0.654093712 -0.201199290  1.064270953
 [84,] -0.1772016552  1.236814571  0.465113687  0.005767215  0.369219332
 [85,]  2.2920500300  2.188882200  1.948697673  2.164836429  1.875522731
 [86,]  0.1485071042  0.327945111 -0.353183937  0.369315974 -0.530032577
 [87,]  1.4646475076  0.880367718  1.426411037  0.166112479  1.170301524
 [88,] -0.0536103020  0.281249772 -0.109705023  0.310450055 -0.169075162
 [89,]  0.5552235556  0.519204931  0.576817955  0.335872846  0.078827296
 [90,]  0.3456803662 -0.085334422  0.364333826  0.264399391  0.139034937
 [91,] -0.2064820386 -0.052346118  0.763751206 -0.400224790 -0.249441842
 [92,]  1.3689990377  0.716827944  1.051680126  0.382172480  0.932523641
 [93,]  1.9844547930  1.955412070  1.118317520  1.350134853  0.988626345
 [94,]  0.4882287511 -0.265908008  0.259450869  0.672100751 -0.105381817
 [95,]  2.0293888176  0.412800795  1.444060559  1.007899878  1.821624220
 [96,]  1.4473929775  1.471632294  0.297601518  1.060250553  1.539135498
 [97,] -0.0299984447  0.283270275  1.334510926  0.980762766  0.400868504
 [98,]  1.0439635421  1.157340367  1.777761136  0.800969943  1.097845717
 [99,]  0.5373924396  1.499825859  0.751675927  0.273825687  1.834708342
[100,] -0.1804339883 -0.244852264  0.287185568  0.088882746 -0.191495262
[101,]  0.6104811867  0.784503687  1.048923778  1.035955289  0.532781052
[102,]  0.7379861401  1.306368201  0.116440008  0.726265818  0.708531083
[103,] -0.2876305844  0.371535197  0.659574715 -0.432098276  0.573397741
[104,]  0.0937199304  0.227971092 -0.141382696  0.107187956  0.221962569
[105,]  1.1572386246  1.428405225  1.566783856  1.408689745  1.554578146
[106,]  2.9132345268  1.590547067  2.321669632  2.416690750  1.725644283
[107,]  0.4420395422 -0.500559087 -0.109340191  0.523798259  0.801914335
[108,]  0.7358177083  0.196618667 -0.095575314  0.719018172  0.256363930
[109,]  1.7525829237  2.347079458  1.308199909  1.444159679  1.052483472
[110,]  1.3130649042  0.565409014  0.667894548  0.497865977 -0.046760094
[111,] -0.1284516001  0.251439214  0.195245067  0.412608305 -0.167434136
[112,]  0.2332677621  0.592773865  0.687284971 -0.463152269  1.262729708
[113,]  1.4778671461  0.616154446  0.937909506  0.933874552  0.869956419
[114,]  0.3666192583  0.140845996  1.058151043  0.311237493  1.232927404
[115,]  0.9327784412  2.085144007  0.195845004  1.068530241  0.488073523
[116,]  0.3372931429  0.366007614  0.835367052  0.917834072  0.079238414
[117,]  0.5849929379  0.626640613  0.483407447  0.754072830  1.263182640
[118,]  0.9785252378  0.414018789  1.153722741  1.129519078  1.537642748
[119,]  0.4254967260  0.083031779  0.170266887  0.197157346  0.095879188
[120,]  1.4422484926  1.433234024  0.942811786  2.359565313  1.433088298
[121,]  0.2564058123  0.407220985  0.500270193  0.587636400  0.369424830
[122,]  1.3742231655  0.007004910  0.753632921  1.039044944  0.871800166
[123,]  1.5207142471  2.327154659  1.148294237  1.347683518  2.205922789
[124,]  0.0438786122  0.824675844 -0.282110464 -0.164002117  0.271291082
[125,]  0.2030135619  0.523196806  0.637543229 -0.075521100  0.286147251
[126,]  1.2756801054  0.490360296  0.580637316  0.716376747  1.667893461
[127,] -0.0210801382  0.295662252 -0.149264798  0.383003449 -0.448969045
[128,]  0.3364503404  0.258452463 -0.540727887  0.667295664  1.012720822
[129,]  0.2129725498  0.425752703  0.336584299  0.020619835  0.872863828
[130,]  0.6220435245  1.317383849  0.434987979  0.697059758  1.035519295
[131,]  0.0669473856 -0.444498818  0.758670099 -0.147241501 -0.054187755
[132,]  0.2776721280  0.369342926  0.270094349  0.178649291  0.563979926
[133,]  0.9343747667  0.383884991  0.430418803  1.589454669  0.182530367
[134,] -0.0194467519  0.741651964  0.208670365  0.578161077  1.146789076
[135,]  0.8374246983  0.068420483  0.937728525  0.384106454  1.629287157
[136,]  0.2056860835  0.692136139  1.482572633  1.018184816  0.733503813
[137,]  0.9114676577  1.341598455  0.528110159  1.518032157  0.575262918
[138,]  0.1383091754  0.582881024  0.186377691  0.347742175  0.399579286
[139,]  0.2800814771  0.221636514  1.229440529  0.575900214  0.240163145
[140,]  0.0914826882  0.339047268 -0.202132630 -0.208883794  0.091754324
[141,] -0.3299474246 -0.334262452  1.162668390  1.119109758  0.404601994
[142,]  2.0035494765  1.286243058  1.605592322  1.503117852  0.903455691
[143,] -0.0433631399  1.062377787  0.210386193  0.942337373  1.482001675
[144,]  0.4790645276  0.450558969  1.241902608  0.844270750  0.463748541
[145,] -0.1733715834  0.366014709  0.682083846  0.594669758  0.143179980
[146,] -0.0668627174 -0.319259150  0.310534056  0.323913610  0.500186859
[147,]  1.8708708235  1.167842140  0.397314715  1.043097010  1.047923012
[148,]  0.2908074965 -0.443579056  0.353901005  0.228164067  0.930242805
[149,]  0.2361163367  0.747373098  1.216983191  1.535419151  0.006536608
[150,]  0.4138741722  1.127748150  1.046795988  1.502799337  1.208482190
[151,]  1.9900805131  1.790614463  1.058333629  2.048100698  1.980038864
[152,]  0.0255571780 -0.288222550  0.078226356 -0.011154454  0.566417851
[153,] -0.0630845878  0.812378250  0.168161470 -0.319019046 -0.225057507
[154,]  0.7542558398  0.654520315  0.949991219  1.197394281  2.091365446
[155,] -0.3380648579  0.499616115  0.281012556  0.429645678  0.555091121
[156,] -0.2359222092 -0.855497264  0.186281983  1.036850425  0.624755062
[157,]  1.6617457243  1.166528693  1.208998741  0.973041430  1.265651266
[158,]  0.5609236116  1.069065229  0.759602809  0.555785485  0.843967712
[159,] -0.5420388287 -0.280601733  0.259916480 -0.272794259  0.580064495
[160,]  2.2487512725  1.597750379  1.005504114  1.530466752  0.882074625
[161,]  0.2632149055  0.182116105 -0.252057045  0.239959611 -0.052323619
[162,]  0.9375954385  1.438933415  1.267126847  0.729860132  0.773407126
[163,]  0.8944902862  0.038550608  0.507923341  0.265447391  0.542830258
[164,]  2.4695466544  1.649068967  2.074047603  2.261302673  2.666636149
[165,]  0.0017805771 -0.385808206 -0.684651425  0.568159481  1.414306270
[166,]  1.4586740429  0.237637069 -0.075189105  0.108906706  0.650293418
[167,] -0.0007545527 -0.399324500  0.568791587 -0.327513827  0.735167034
[168,] -0.4697957018  0.506874837  0.003763956  0.099113487  0.248564020
[169,]  1.0265520818  1.126153533  0.637725615  1.550905870  1.397806943
[170,]  0.2443462857  1.000236253 -0.280731866  0.195669371 -0.215191037
[171,]  1.4073913838 -0.191786402  0.258032609  0.267778229  0.961041522
[172,]  0.2449855035  0.655970894 -0.134206000  0.613139434 -0.229758986
[173,]  0.6901864715  0.256603059  0.711321844  0.058582461  0.615342721
[174,]  0.3702037291 -0.162832466  1.148955065  0.169380285  0.902908046
[175,]  0.3848233967  0.775266087  0.852783265  0.076815272  0.205459354
[176,]  1.6494987394  1.104531610  2.301665124  1.689360562  1.690038421
[177,]  0.8645582873  0.059908190  0.474552063  0.058974673  0.877120255
[178,]  1.1144922415 -0.202680750  0.487051513  0.436177660  0.001542926
[179,]  1.9863439795  1.559324564  1.084718577  2.017143146  1.401416873
[180,]  1.3038398552  0.312741151  0.770023037  1.174894791  0.500576417
[181,]  0.0285217934  1.062195472  1.330237933  0.134279419  0.098446676
[182,]  1.3230742164  0.364654902  0.971237133  1.368916536  0.883229045
[183,]  0.5297801211  0.505633304  0.280937232  0.608682073  0.082781010
[184,] -0.1234387155  0.660659074  0.369118221  1.005509664  0.264554325
[185,]  0.7224092230  0.045897342  0.877907914  0.525714188  0.511605437
[186,]  0.3776988128  0.288351159  1.294925494  0.267825622  0.262464818
[187,]  1.9383351827  0.954314436  1.443118434  0.508477920  1.375928588
[188,]  1.1501490845  1.906532541  1.319567899  1.277366785  1.638672592
[189,]  0.4954386966  1.319200138  1.301623036  0.535808919 -0.323661230
[190,] -0.3382776036 -0.287007170 -0.047675472  0.402884616  0.199615821
[191,]  0.8362243401  1.289081715  1.237915675  0.221116669  1.235357567
[192,]  1.8699894242  1.640939926  1.521769142  1.423067331  2.213831916
[193,]  0.1052569305 -0.303255337  0.317581122  0.675903142  0.961550436
[194,]  1.1913845766  0.482915737  1.324183767  1.390131280 -0.073817115
[195,] -0.1363099712  0.643951597 -0.264560949  0.636814662  0.812388867
[196,] -0.1463125867  0.430558580  0.241236982  0.188091303  0.923207396
[197,]  1.4999827967 -0.172966306  1.078223368  0.362627121  1.803206730
[198,]  0.3315968508  1.063221240  0.601815893  0.195420064  1.410364579
[199,]  1.5018797743  1.554401561  0.607532271  1.896269552  1.189960213
[200,]  1.8516965842  1.921333737  1.836635001  1.891785379  2.632087065
[201,]  0.5359792921  0.055333504 -0.166412805  1.213887912  0.459398564
[202,]  2.4568049529  2.392155950  2.106343949  0.967061816  1.342538608
[203,]  1.0833776965  0.260892330 -0.387930391 -0.181682436  1.035939010
[204,]  0.0515600283  0.210242203 -0.570594015  1.296492899 -0.601817158
[205,]  0.1492037770  0.842384019  1.676276296  0.937459223  1.451326767
[206,]  1.3452828424 -0.421124568  0.603786613 -0.052447946  0.537334526
[207,]  0.9642254373  0.035851357  0.739212730  0.876400961  0.777144996
[208,]  0.3992185834 -0.034864621  0.102925760  0.172867080  0.101467466
[209,]  0.4107524536  0.951179626  0.528484151 -0.372410297  0.071613191
[210,]  1.0481147030  1.482894084  1.111915216 -0.146366571  0.612478044
[211,]  0.0323082447  0.729004149 -0.665828170  0.656137546 -0.350149279
[212,]  1.2711204620  1.571003508  1.397826163  0.461046136  0.744706599
[213,]  2.2865786681  2.391971682  2.586462799  2.761529786  2.291042063
[214,]  0.8867123618  1.086407711  1.583664975  2.342292900  1.279471371
[215,]  1.0190594998  0.400369267  1.040869178  0.101213620  0.844227086
[216,]  0.7191503168 -0.981077867  0.600687428 -0.140611781 -0.071594048
[217,]  0.3022940068  0.332400526  0.970543568 -0.386206847  0.459456664
[218,]  1.1843826420  2.457236898  1.501895834  2.299704586  0.930496519
[219,]  1.4407155714  1.173429534  1.397051291  0.726540279  1.167493501
[220,]  0.8611988742  1.313208531  0.865035237  0.579201812  1.288314524
[221,] -0.4858559286  0.566009145  0.122978897 -0.061570227  1.051422920
[222,]  0.7902256548  0.483665337  1.538299514  0.849740325  0.326209547
[223,]  1.0375980257  2.034176968  1.205608709  1.663673133  0.536519477
[224,] -0.1255350969  0.012891654  0.032403312  0.138493271  0.286268396
[225,] -0.2811157975 -0.089911818  0.605452757  0.187310317  0.493090764
[226,]  3.2764865481  2.409571266  2.519355781  1.746694330  2.641130368
[227,]  0.0111141721 -0.420216566  0.090091010  0.971230762  0.080763272
[228,]  0.1138887246  1.249254264  0.788899349  1.051052135  0.907065787
[229,]  2.0823334579  2.181220002  2.900636034  1.493487771  1.494136783
[230,]  1.1549395422  0.885213272  1.038963562  1.484842651  0.817435288
[231,] -0.1857608475  0.111786755  0.249999424  0.847277873  0.253233000
[232,] -1.1438078291  0.656762211  0.454069276 -0.094704795  0.057710212
[233,]  1.0039358580  0.905015390  1.596969436  0.968037521  1.240730210
[234,]  0.4553330020 -0.213596712  0.086673636  0.700015547  0.125202324
[235,] -0.0193841908  0.176645159 -0.444777862  0.368309503  0.231116545
[236,]  0.8417199778  0.713418142  1.260748893  0.638076160  0.895964438
[237,]  0.2437986247  0.328382130 -0.098872926  0.903653521 -0.814276265
[238,]  0.5820941121  1.092853233  1.374562218  0.255163504  1.641136553
[239,]  0.5858621823  0.510337973 -0.207937512 -0.054957998 -0.255045108
[240,]  0.5475982219  0.744611189 -0.126198379  1.141864437  0.565662097
[241,]  0.4352064466 -0.796315055  0.374385515  0.838489962 -0.124606104
[242,]  1.0426326620  0.005803227  1.581147779  0.633083963  0.243805333
[243,]  1.6119678236  2.004215411  0.803194160  1.634740045  1.759807623
[244,]  0.1689560014  0.875869565  0.155162742  0.948254158  0.389739313
[245,]  0.5012454733 -0.455059029 -0.461805502  0.440858595  0.133447764
[246,] -0.4429005754  0.021637356  0.571274775  0.757199647  0.979051703
[247,]  0.4344854139  1.110205597  1.099976133  0.065052522  0.910012656
[248,]  1.0568547352  0.865312531  1.221891877  1.714944553  0.906651905
[249,]  0.2595505483  1.048640608  0.034284053  0.052178137  0.152123121
[250,]  1.3496814903  1.538208599  0.152735499  0.742076230  0.845646374
[251,]  0.4298654378 -0.208277149  0.557918712  0.608591661  0.729051487
[252,]  0.6489377343  0.115240624  0.933814555  0.384258131  0.209283170
[253,]  0.3042395517 -0.151661756  1.331621494 -0.544420218  0.479659596
[254,]  0.5240714896  0.908672572  1.060289590  0.213406907  0.408884758
[255,]  0.4665313235 -0.384829426 -0.052150249  0.619889274 -0.031947829
[256,]  1.6376131263  0.270746720  1.120195644  1.805168740  0.982042391
[257,] -0.4099069349  1.575198449  0.771745664  0.017486405  0.680286120
[258,]  1.3256619570  1.436057929  0.919334450  0.704811527  1.103123268
[259,]  1.3614424897  1.496013416  1.182357455  0.209376396  1.807041571
[260,]  0.1711112188  0.121679791 -0.030722856  1.007615705  0.768465927
[261,]  1.8817769440  1.405506988  1.251677483  1.481411149  1.659584059
[262,] -0.0694198469  0.366748823 -0.295842576  0.466744736 -0.285237561
[263,]  1.3130553669  0.951601274  1.257520277  1.563527842  2.232828902
[264,]  1.6182790292  1.144137420  0.938531099  1.395099892  1.448810509
[265,]  1.8699217548  1.085657248  0.840853070  1.392841197  0.829115924
[266,]  0.6644250046  1.194373453  0.329072677  0.252955026  0.691692503
[267,]  0.7266049739  1.187927656  1.097489776  1.045725083  0.664593582
[268,] -0.2025677536  0.890325925  0.045983843  0.539215891  0.117846806
[269,]  0.1016597905  0.321026935 -0.071282369 -0.150780519  0.660314461
[270,]  0.5987124495  0.628665502  1.800627024  1.041276879  1.056200286
[271,]  2.2122341150  2.207476181  2.752529990  1.380977192  2.358111426
[272,]  0.5716436946 -0.276978199  0.832637703  0.366019022  0.496180850
[273,] -0.0190457671  0.767915682  0.930302692 -0.165156519 -0.090007581
[274,]  1.3872580151  0.628578078 -0.459703798  0.359062750 -0.610473762
[275,]  0.1965736388  0.094568190  0.893096147 -0.102918443 -0.226853440
[276,]  0.8697751007 -0.075705031  0.883341441  0.025868572  0.350683820
[277,] -0.7077807226  0.854368580  0.414877998  0.197620658 -0.161413072
[278,]  0.9404593725  0.627458013  0.790000461  0.518513157  0.347065539
[279,]  0.6834588956  1.185011431  1.404929830  1.029729988  1.723093588
[280,]  1.8104340121  1.794763540  1.180359813  1.009812675  1.555664302
[281,]  0.3602503356 -0.135307148 -0.337578800  0.084974776  0.886034412
[282,]  0.0675646807  0.720402470  0.412357413 -0.503443508  0.565453773
[283,]  1.4973831843  0.509917609  1.741043229  0.418548709  0.771917618
[284,]  1.7517596582  2.253195272  2.835473956  1.712105207  1.805132379
[285,] -0.2268599037  0.410826186  0.019821500 -0.600984123  0.301575007
[286,] -0.0113907238 -0.038420925  0.602093532  0.817896453  0.309550782
[287,]  0.6973674595  1.185035623  1.050115756  0.727099939  1.178673832
[288,]  1.7735989616  1.260878851  1.746517236  1.239098500  1.261070757
[289,]  1.2726351144  1.322492569  1.530633950  0.789113805  1.212851823
[290,]  2.2893985059  1.481386234  2.036136918  1.691641437  1.814369516
[291,]  0.9012342104  1.060674087  1.521926852  0.268885815  1.422339692
[292,]  0.4300012003  0.785421573  0.070436350 -0.455113270  0.015203178
[293,]  1.8364183862  1.781360760  1.881662122  0.756846932  2.083263671
[294,] -0.4451242228  0.585383995  0.609217771  0.435801440 -0.082287268
[295,]  0.8013814434 -0.167625541  1.306724535 -0.760748061 -0.604142770
[296,]  0.1446173718 -0.325834749  0.178868685  0.862246978 -0.156479918
[297,]  0.8512759950  0.467138598  0.222728957  0.087797878  1.098325543
[298,]  1.5516966593  0.597341832  1.388784776  1.651364823  0.562418741
[299,]  0.9011678487 -0.091985438  1.079989573  1.660660136  1.027374892
[300,]  2.0381632833  2.648444544  2.289969942  1.694339399  2.194485643
[301,]  2.2857829022  1.416081317  2.097993284  2.156939995  1.664796628
[302,] -0.3448945975 -0.541499871  0.882088682  0.375030553  0.076972632
[303,]  1.4868114971  0.899099318  0.032493530  0.495957125  0.436712740
[304,]  1.2919555979  1.477642365  1.032636592  2.186453775  1.037190268
[305,]  1.3140312551  0.258141611  1.150396811  0.217953670  0.501165856
[306,]  1.5668186420  0.746739522  0.921767371  1.486723408  0.598212870
[307,]  0.2705981031  0.062357106 -0.065537295  0.023379990  0.771475005
[308,]  0.2301907100  0.339671360 -0.570287049  0.447276552 -0.344710771
[309,]  0.6628132004  1.456544786  0.878836093  0.996987221  1.241280624
[310,]  1.7268096506  0.889334386  1.990694292  1.794795865  1.900994527
[311,]  1.0780160419  0.698836677  0.321356503  0.578989896  0.867074962
[312,]  2.6592411859  2.895152731  3.026574290  2.264275332  2.656720643
[313,]  0.4740038576  0.961427951  0.711900046  0.551780227  0.743067383
[314,]  0.0369864910 -0.588507922  0.720988264  0.926495135  0.444614467
[315,]  0.1049284479  0.030439962  0.144646999  0.163569814  0.256558367
[316,]  0.9318726424  1.177855614  0.057064164  0.675461188 -0.069814407
[317,]  0.9779163905  1.530557796  1.061520330  1.189516437  0.854324886
[318,]  1.9375734138  1.327203822  2.631484225  2.072194858  2.449637509
[319,] -0.5211571765 -0.531589995 -0.184136732  0.513434668  0.289249059
[320,]  1.6122590594  1.559627595  1.715804787  0.991292966  1.455314815
[321,]  0.8828434833  0.165660115  0.123209478  0.380945793 -0.018109807
[322,]  0.8915789020  0.525857020  0.310564799  0.253424338 -0.533729043
[323,]  1.0521442179  0.763173333  0.591489856  0.897803344  0.257907900
[324,] -0.5811338365  0.378331768 -0.166494394  0.889575894  0.032745064
[325,]  0.7290709103  0.561947315  0.598085624  0.998319496 -0.042613800
[326,]  0.6551674488  0.494063857  0.170434051  0.632380603  0.231448039
[327,]  0.0133337386 -0.309286153  0.758789091  0.210371504  0.153260963
[328,]  1.0215855418  1.858510587  0.350767269  1.318088535  0.849862186
[329,] -0.0543920874 -0.179514280 -0.128384368  0.805633330  1.008278585
[330,]  1.6992379608  1.355584831  1.044714238  1.160450419  1.379220518
[331,]  0.4414041708  0.390203608  0.453746460  0.457723629  1.092751098
[332,]  1.1736915746  2.658228474  1.431300158  1.651579830  2.055541266
[333,]  0.1296132618  0.708629038  0.103985084 -0.253637108  1.028568857
[334,]  2.3707661456  1.472701647  1.537416650  2.335006129  1.608674772
[335,]  0.3048224053  0.551245915  0.292822393  0.311652282  0.605334299
[336,]  0.7942780985  0.887839062  0.416260868  0.619147522 -0.324919178
[337,]  0.5944751998  1.001952432 -0.573761756  0.854105680 -0.546125227
[338,]  1.8834445092  1.999815878  2.130097839  1.587425627  2.091822959
[339,]  0.9079897097  0.673904718  1.204544043  1.331008594  0.912338391
[340,] -0.0487471455 -0.171701524  0.315524387  0.141507830  0.310992524
[341,]  1.3050888624  1.724820292 -0.059775476  2.015425109  0.507977943
[342,]  1.0071144986  0.722633884  1.665758932  1.462105668  2.305261360
[343,]  0.1434899969  1.219849413 -0.546226126  0.149134565 -0.612855802
[344,]  0.4304634629  0.471592257  0.921867712  0.762868065  0.139435683
[345,]  1.2992532243  2.244757485  2.996824040  2.568087044  1.956396777
[346,] -0.4676296157  0.293169987  0.673485516  0.361658805  0.002410185
[347,]  0.7810262911  0.692634868 -0.199863725  0.602468794  0.252859318
[348,]  0.3720286290  0.585706415  0.133452158  0.764560628  0.462458038
[349,]  0.3697650508 -0.796021348  0.167966900 -0.085980757  0.806710593
[350,]  1.3599896395  0.562182129 -0.014553920  0.704684943  0.631377418
[351,]  1.0807901534  0.526188194 -0.303730470  0.427214251  0.920750657
[352,]  0.9783358856  0.900996631  0.860754293  1.397725834  0.101399964
[353,]  1.0620275969  0.468967292  1.020410051  1.231528563  0.728309199
[354,]  0.8772550067  0.042954276  1.481857967  1.437526274  0.917362169
[355,]  0.6889716817 -0.221204400 -0.505812461 -0.612954164  0.737776142
[356,]  1.3964090331  0.730216408  1.084355877  0.817660441  1.705111032
[357,]  1.9554043795  2.237279087  2.189610774  2.485596401  2.951472442
[358,]  0.3485623532  0.051695094  0.227729230  0.472665944  0.870728653
[359,]  0.6151404546  1.411103580  1.699811714  1.385293604  1.563124644
[360,]  0.2123655121  0.187178323  0.040952566  0.694167608  0.392268137
[361,] -0.8229079744  0.775517930 -0.002114184  0.448729967  0.377598449
[362,]  0.7975822120  0.532534588 -0.459155854  0.138147245  0.262924385
[363,]  1.2738687665  1.277564018  1.146111816  2.314864938  1.921782385
[364,]  1.3805288443  1.472739008  1.307385413  1.055797001  2.226795912
[365,]  0.7724753239  0.998247782  1.451399701  0.515849299  0.403447897
[366,]  0.4593913357  0.704270099 -0.254300880  0.388007193  0.007871377
[367,]  0.6598277392  0.301277257 -0.086612589  0.871697242 -0.433145648
[368,]  0.2727471773 -0.675371012 -0.334936773  0.346809369  0.491391694
[369,]  1.2275158773  1.602519770  1.427931504  1.361896038  1.664646783
[370,]  1.2342031890  1.863891007  1.777203904  1.926231311  2.557661316
[371,]  0.929285818