Multi-Environment Trials - Lupins
Introduction
In this section, we explore some models that can be fitted to
multi-environment trials, in particular showing the application of
factor analytic models.
A multi-environment trial is a series of experiments with treatments in common.
Our examples are drawn from field crops where the aim is to identify
genotypes which consistently yield well over a region in several seasons.
The traditional approach involved analysing the experiments separately,
saving the means, and then performing some analysis of the means.
This approach tends to ignore differences in experiment accuracy
and to require each genotype be tested in each experiment
(limiting the experiments and/or genotypes that can be considered together).
The methods described in this section build on spatial analysis,
incorporate trial accuracy and allow for unbalance in genotype
representation. For further reading, see Smith et al (2001, 2005).
Multi-environment trials have three basic forms. Early generation trials
have few sites and few replicates but many lines to compare. Current latestage trials
have more 3-4 replicates, 10-15 sites and 30-50 entries of elite lines grown at most sites.
National analyses draw together results from multiple latestage trials using
results from several years and regions, many sites and many lines.
We will consider these three cases.
An early generation trial
Early stage multi-environment trials typically have many genotypes but
limited seed. Consequently, within site replication of test lines is low (1 or 2)
so that lines can be tested at more locations. Traditionally,
grid plot designs have been used where standard/reference/check lines are
highly replicated using a systematic grid but partial replicate designs
are strongly advocated (Cullis et al. 2006).
This example involves 6 check lines and 330 test lines grown at three locations.
The first 2 locations were laid out in a 12 by 34 arrangement,
12 replicates of each check line and 1 of each test line.
The extra 6 plots were sown to a fillin variety which was also harvested.
The third location was laid out in a 15 by 28 arrangement and had
15 replicates of each check line. The data file MET.DAT
is sorted row within column within site.
The distributed data file has extra fields we will ignore.
The code for an initial combined analysis fitting a common random
test effect follows.
This code incorporates the results from
several preliminary runs involving separate spatial analyses of each site
ignoring test. These runs suggested a random row
term was required for site 3, col terms for all sites, AR1 was
unnecessary for the col dimension of the R structure for site 3,
and provided the inital values inserted in the code.
The !SECTION site qualifier allows ASReml to check
that the factor site does indeed correspond to the 3 sections
in the R structure. Notice in the 6 R structure lines that the
field dimensions are explicitly given in the first field, and the
row/col in the second field enables ASReml to sort/check the plots
in field order.
Early Generation MultiEnvironment Trial
seq
col 15 # Actually 12 12 and 15 for the sites respectively
row 34 # Actually 34 34 and 28 for the sites respectively
chks 7 # 0 is fillin, 1-6 are check lines, 7 is test line
test 336 # 0 is fillin or check, 7-336 is test line
geno 337 # 1-6 are checks, 7-336 are test lines, 337 is fillin
yld 1 !*.01
site 3
met.dat !SECTION site
yld ~ site chk.site,
!r at(site,3).row .02 at(site).col .90 .40 .036 test
predict chk site
predict test site chks 7
site 2
12 col AR1 .1271 !S2=2.19 // 34 row AR1 .751
12 col AR1 .25 !S2=0.84 // 34 row AR1 .56
15 col ID !S2=0.19 // 28 row AR1 .38
The LogL from this run is -314.262 and the parameter estimates follow.
- - - Results from analysis of yld - - -
Source Model terms Gamma Component Comp/SE % C
Residual 1236 1213
at(site,01).col 15 15 0.622124 0.622124 1.45 0 P
at(site,02).col 15 15 0.158966 0.158966 1.40 0 P
at(site,03).col 15 15 0.483343E-01 0.483343E-01 1.85 0 P
at(site,3).row 34 34 0.235011E-01 0.235011E-01 2.77 0 P
test 336 336 0.103063 0.103063 7.02 0 P
Variance[ 1] 408 0 2.77228 2.77228 8.80 0 P
Residual AR=AutoR 12 0.195859 0.195859 3.64 0 U
Residual AR=AutoR 34 0.650554 0.650554 16.80 0 U
Variance[ 2] 408 0 0.992656 0.992656 9.20 0 P
Residual AR=AutoR 12 0.286849 0.286849 5.47 0 U
Residual AR=AutoR 34 0.574471 0.574471 13.65 0 U
Variance[ 3] 420 0 0.120457 0.120457 6.43 0 P
Residual AR=AutoR 28 0.639281 0.639281 10.11 0 U
Wald F statistics
Source of Variation NumDF F-incr
8 site 3 1230.64
9 chk.site 20 11.36
Practioners have taken two views on whether check or reference
lines should be fitted as fixed effects, or just treated as random effects in
the set of genotypes. It may effect the variance of the test/genotype effects.
Comparison of test lines with check lines is easier if all are in the
same random factor but this analysis takes the former approach.
Notice in passing that chk.site has 20 rather than 18 degrees of freedom
because of the fillin variety at the first 2 sites.
Our aim in this analysis is to get good predictions of test line effects.
To do this we can compare several models for the genetic variances and covariances
of test lines across sites.
We are interested in the common effect of genotype across sites,
but also to know to what extent individual sites diverge from
the common genotype rankings.
Our naive first model simply fits a common genetic effect, primarily to show
why this model is inadequate. It implies the genetic variance is the
same at all sites and the genetic correlation between sites is 1.
Both assumptions are unlikely given that the residual variances range
from 0.12 to 2.77.
Adding site.test to the random model
allows for a common covariance less than the common variance. It increases the
LogL from -314.262 to -310.879, highly significant and gives components
test 336 336 0.867727E-01 0.867727E-01 5.46 0 P
site.test 1008 1008 0.440183E-01 0.440183E-01 2.62 0 P
This represents a genetic correlation of 0.66=0.08677 /( 0.08677+0.04418)
and an average genetic variance of 0.1308= 0.08677+0.04418, up from 0.1031.
However, the residual site variances are quite different (20 fold difference) so
it is likely that the genetic variances differ between sites.
Our next model therefore fits a common correlation but heterogeneous variances.
We drop test from the list of model terms and put the CORUH
structure on the site component of site.test.
The ASReml code is
yld ~ site chk.site ,
!r at(site,3).row .02 at(site).col .90 .40 .036 site.test
site 2 1
12 col AR1 .1271 !S2=2.19 //34 row AR1 .751
12 col AR1 .25 !S2=0.84 //34 row AR1 .56
15 col ID !S2=0.19 //28 row AR1 .38
site.test 2
site 0 coruh .66 .13 .13 .13 !GU
test
The LogL increases 22.4 (P<0.01) to -288.484 (P<0.01) and the components are
site.test CORRelat 3 0.418611 0.418611 6.36 0 U
site.test CORRelat 3 0.991289 0.991289 7.95 0 U
site.test CORRelat 3 0.152347 0.152347 2.73 0 U
site.test CORRelat 3 0.122776 0.122776 7.19 0 U
So the common correlation under this model is 0.42 (down from 0.66) and
the site variances are 0.99, 0.15 and 0.12 respectively; site 1 being particularly high.
This CORUH model would typically be the first model fitted.
In this case there is genetic variance at each site but sometimes
that will not be the case.
Is the assumption of common correlation justified? Finally we fit
an unstructured model. This is equivalent to an XFA1 model for 3
sites but with more sites, the XFA1 model might be
more parsimonious.
G structure code is shown below.
resulting LogL is -286.824, an increase of 1.66
2 df (P>0.05). The initial values were derived from the CORUH
for example, 0.16=0.42*SQRT(0.99 * 0.15).
site.test 2
site 0 US !GP
.99
.16 .15
.14 .06 .12
test
The resulting genetic variance matrix is:
.991 | .157 | .132
|
.157 | .072 | .078
|
.132 | .078 | .122
|
What next? Predicted values for the lines at each site are given in the
.pvs file by the predict statement
predict site test check 7 # Check 7 is the mean effect for test
and averaging sites, weighting by the genetic variances (from the
CORUH model) is given by
predict test chk 7 !ave site {1.00 2.56 2.85}/ 6.42
where the weights were calculated as 1/sqrt(c(0.991289,0.152347,0.122776)).
Five site MET example
This second example is also an early generation trial but
with more sites (5). It demonstrates a typical set of five models
fitted also to current latestage trials.
There were 330 genotypes
replicated twice at each site except 7 plots were sown to a fill in variety.
!WORK 100 !NO !ARG 1 2 3 4 5 // !DOPART $1!RE>
Title: met.a307.
Plot * Block * Entry * Column * Row *
Genotype !A Site !A 5 Year !I Environment !A
yield !*0.001
met307.csv !SKIP 1
!PART 1
!SECTION Site !Row Row !Col Column # generates standard spatial R structure
tab Block Col Row Gen ~ Site !stats # tabulates structural factors
yield ~ mu Site at(Site).lin(Row) at(Site).lin(Col) mv , # fixed model
!r at(Site).Row at(Site).Col at(Site).Block Site.Geno # random model
Site 2 1 # NB R structure is generated by ASReml so not here
Site.Geno 2
Site 0 CORUH
.5 5*.015
Geno
!PART 2 5 # Fits CORUH and US
!CONTINUE
yield ~ mu Site at(Site,1,2,4,5).lin(Row) at(Site,5).lin(Col) mv ,
!r at(Site,01,02,03,05).Row .003 .003 .0001 .0008 ,
at(Site).Col .06 .007 .002 .02 .001 ,
at(Site,2).Block .05 ,
Site.Geno # Starting values inserted from PART 1
!PART 3 4 # Fits XFA1 and XFA2
!CONTINUE
yield ~ mu Site at(Site,1,2,4,5).lin(Row) at(Site,5).lin(Col) mv ,
!r at(Site,2).Block .05 at(Site,1,2,3,5).Row .003 .003 .0001 .0008 ,
at(Site).Col .06 .007 .002 .02 .001 ,
!PART 3
xfa(Site,1).Geno
!PART 4
xfa(Site,2).Geno
!PART 2 3 4 5
Site 2 1
55 5 AR1 0.5 !S2= 0.132 // 12 4 AR1 0.35 #Section 1
55 5 AR1 0.7 !S2= 0.22 // 12 4 AR1 0.22 #Section 2
55 5 AR1 0.74 !S2= 0.028 // 12 4 AR1 0.25 #Section 3
55 5 AR1 0.78 !S2= 0.22 // 12 4 AR1 0.18 #Section 4
55 5 AR1 0.68 !S2= 0.041 // 12 4 AR1 0.36 #Section 5
!PART 2
Site.Geno 2
Site 0 CORUH # Starting values from PART 1
.62 .062 .10 .14 .16 .06
Geno
!PART 3
xfa(Site,1).Geno 2
xfa(Site,1) 0 XFA1
.018 .045 .004 .10 .012
.21 .24 .1 .22 .22
Geno
!PART 4
xfa(Site,2).Geno 2
xfa(Site,2) 0 XFA2 !G5P5P5P
.018 .045 .004 .10 .012
.21 .24 .1 .22 .22
5*.01
Geno
!PART 5
Site.Geno 2
Site 0 US !GP
0.5945E-01
0.4989E-01 0.1007
0.2145E-01 0.2443E-01 0.1443E-01
0.4640E-01 0.5285E-01 0.2272E-01 0.1503
0.4622E-01 0.5265E-01 0.2263E-01 0.4896E-01 0.6088E-01
Geno
Part 1 ended after 10 iterations with a LogL of 2563.4, not having quite
converged. Part 2 (starting from Part 1 estimates)
converged in 7 iterations to LogL 2586.7. These LogLs are not
comparable because some small fixed effects were dropped from
part 2. Both these fitted the genetic variance matrix assuming equal
correlation among sites but different variances CORUH.
Factor Analytic models provide a parsimonious approach generalising the
covariance structure. Replacing CORUH
with XFA1
in part 3 increased the LogL to 2611.71, a substantial gain.
The XFA2 model in part 4 increased the LogL to 2621.57 after 10
iterations (not quite converged). Finally, fitting US
in part 5 resulted in a LogL of 2622.06. This has only one more
parameter than the XFA2 model which has 4 more free parameters
than the XFA1 model. Consequently the XFA2 model is the best
fit.
In this case the unstructured variance matrix can be fitted but
in general, especially with more than five sites, with high
genetic correlations and with fewer genotypes, a positive definite
unstructured variance matrix can not be fitted.
The final genetic
variance matrix was
Covariance/Variance/Correlation Matrix UnStructured Site.Geno
0.05947 0.6092 0.7241 0.5229 0.7736
0.04755 0.1025 0.6013 0.5910 0.6717
0.02119 0.02310 0.01440 0.4829 0.7818
0.04943 0.07334 0.02247 0.1503 0.4438
0.04657 0.05308 0.02316 0.04247 0.0609
Recall, the average correlation from the CORUH model was 0.626.
It is convenient at this point to explore the XFA model.
It is akin to Principal Components analysis. The XFA1 model
assumes a single latent genotype variable explains the covariance
while XFA2 assumes two latent genotype variables.
The XFA2 model forms the across site variance matrix as
ΓΓ'+Ψ with estimates from this example
of
| 0.0172 | 0 | 0 | 0 | 0
|
| 0 | 0.043 | 0 | 0 | 0
|
Ψ= | 0 | 0 | 0.004 | 0 | 0
|
| 0 | 0 | 0 | 0.000 | 0
|
| 0 | 0 | 0 | 0 | 0.008
|
and
|
| 0.186 | 0.088
|
| 0.237 | 0.055
|
Γ= | 0.089 | 0.049
|
| 0.347 | -.171
|
| 0.188 | 0.133
|
The elements in the diagonal matrix Ψ are known as
specific variances and represent the variation in genotype
effects that is site specific (not associated with the factors).
The elements of Γ are the loadings for the two factors
at the five sites. They represent the regression of the genotype
effects for each site on the latent factors and plotting them
maps the sites according to genetic similarity
highlighting that site 4 is most divergent.
XFA2 variance matrix as presented in the .asr file (slightly reformated) is
Covariance/Variance/Correlation Matrix XFA xfa(Site,2).Geno
0.0594 0.6252 0.7120 0.5247 0.7762 0.7615 0.3627
0.0488 0.1024 0.6175 0.5883 0.6564 0.7391 0.1720
0.0208 0.0237 0.0144 0.4853 0.7850 0.7403 0.4089
0.0494 0.0727 0.0225 0.1490 0.4485 0.8983 -0.4394
0.0467 0.0518 0.0233 0.0427 0.0609 0.7628 0.5387
0.1857 0.2365 0.0889 0.3468 0.1883 1.000 0.000
0.0884 0.0550 0.0491 -0.1696 0.1330 0.000 1.000
The first 5 by 5 block is the variance matrix, directly
comparable to the US matrix displayed above, with
derived correlations in the upper right triangle.
The first 5 columns of the last 2 rows are the loadings, Γ',
being the covariances of the genotypes effects at the 5 sites
with the latent factors.
Similarly, the first 5 rows of the last 2 columns are
the correlations of the genotypes effects at the 5 sites
with the latent factors. The final 2 by 2 identity matrix
relates to the two factors.
The .sln file also contains genotype effects for the two
factors, that is the genotype scores,
as well as genotype effects for the 5 sites. For example
xfa(Site,2).Geno BLA3071.VV5866 0.1006 0.9392E-01
xfa(Site,2).Geno MTA3071.VV5866 0.1237 0.1680
xfa(Site,2).Geno PNA3071.VV5866 0.7299E-01 0.5347E-01
xfa(Site,2).Geno RSA3071.VV5866 -0.3641 0.1638
xfa(Site,2).Geno WTA3071.VV5866 0.2089 0.8414E-01
xfa(Site,2).Geno Factor-1.VV5866 -0.2370 0.3487
xfa(Site,2).Geno Factor-2.VV5866 1.661 0.5551
The site BLUPS are calculated as Γs+d where
s is the score
and d is
a lack of fit residual (with variance given by Ψ).
Thus
| | 0.1006 | | | | | | | 0.186 | 0.088 | | | | -.237 | | | | | | -.0015|
|
| | 0.1237 | | | | | | | 0.237 | 0.055 | | | | 1.661 | | | | | | .0885 |
|
| | 0.0730 | | | | = | | | 0.089 | 0.049 | | | | | + | | | .0127 |
|
| | -0.3641 | | | | | | | 0.347 | -.171 | | | | | | | | .0022 |
|
| | 0.2089 | | | | | | | 0.188 | 0.133 | | | | | | | | .0325 |
|
The factors will be close to orthogonal if the user has not applied
explicit constraints to the loadings, or they can be rotated as shown in the
next example to be orthogonal. Plotting the genotype scores on the factor axes
gives a two dimensional representation of them. Plotting the loadings gives
information on the similarity of sites with respect to genotype ranking.
Plotting both together provides a biplot.
The average genotype ranking is given by predicting genotype effects (BLUPs)
at the average
loadings (0.213, 0.031). Stability of genotype performance is
assessed by evaluating them at the extreme sites. Sites 1, 3 and 5 are similar
(average 0.154, 0.090) while site 2 is close to the average and 4 is quite
different.
The basic predict statements are therefore
Genotype !AVE site 5*0 0.154 0.090 !ONLY xfa(Site,2).Geno # Average 1 3 5
Genotype !AVE site 5*0 0.213 0.031 !ONLY xfa(Site,2).Geno # Average all
Genotype !AVE site 5*0 0.237 0.055 !ONLY xfa(Site,2).Geno # Site 2
Genotype !AVE site 5*0 0.347 -.171 !ONLY xfa(Site,2).Geno # Site 4
Note that these predictions are based solely on the factors and therefore
ignore the specific variance effects. Note the !ONLY
qualifier. Without it, the predictions are not estimable because
they include the mu term but no other fixed effects. The specific variance effects
are not included in the ASReml output but can be calculated with a
predict statement like (for site 4)
predict Geno !AVE Site 0 0 0 1 0 -.347 0.171 !ONLY xfa(Site,2).Geno
The predict statement
predict Geno !AVE {1 0 1 0 1}/3}
gives predictions that include the mean and the specific variance effects.
Meta analysis of trial means
The combined analysis of experiments at the plot level discussed in the previous subsection is suitable for up to
10 experiments although an XFA structure would typically be fitted
in place of US with more than 3 experiments. However,
when it comes to later stages of selection, it is desirable to
include as many experiments as possible representing different locations and
seasons when comparing genotypes.
This will commonly be over 30 experiments after 3 years of evaluation,
and could easily be as many as 100 trials. Furthermore, few genotypes will be represented at all sites.
We describe a two step approach. First, each experiment
is analysed separately under a spatial model and predicted
genotype means are produced along with a set of weights
(see !TWOSTAGEWEIGHTS on page \pageref{qual:tsw}).
Ideally these should be stored in a database so that they can
be conveniently retrieved later for subsequent analysis.
We also store the site mean yield and the residual variance
along with details of the spatial model fitted.
For this example, we have extracted 2019 predicted lupin yields
from the data base, with their weights. They represent 203 genotypes
and 87 experiments conducted in 3 regions over 5 years.
The yields range from 0.09300 to 5.613 with an average of 1.732.
The experiment variances range 0.00037 to 0.04671 with an average of 0.02491.
Note that the weights have been scaled by this average value
(via transformation and back again in the model) so that variances
have their natural scale.
Following is code that fits 5 models to this data.
!WORK 1 !NO !CONTINUE !RENAME !ARG 11 1 2 // !DOPART $1
Title: ALBUS Second stage.
#trial,year,region,variety,yield,rep,weight,ems
#KFA02BURU,2002,NSW,KIEV-MUTANT,0.873,3,2136.562,0.0010000
trial !A year !I region !A variety !A
yield rep * weight !*0.025 ems
ALBUS.csv !SKIP 1 !MAXIT 40
!PART 11 # Shows trials 51 and 85 have minimal variance: fix .0001
yield !wt=weight ~ mu trial !r trial.variety
!PART 1 2 3 4
yield !wt=weight ~ mu trial !r xfa(trial,$1).var
!PART 0
1 1 1
0 !S2==0.025
!PART 11 # LogL 2783.33
trial.variety 2
trial 0 CORUH .1
87*.1
variety
!PART 1 2 3 4 # LogL 2911.52 +117.83 =3029.35 +118 =3152|3147
xfa(trial,$1).var 2
xfa(trial 0 XFA$1 !GP
50*.01 .0001 33*.01 .0001 2*.01
87*.07 87*.07 87*.07 87*.07
variety
The equal correlation model is fitted first in part 11. After 40 iterations,
it had converged with a LogL of 2783.3 with an average genetic
correlation of 0.55.
Continuing with XFA1 in part 1, the LogL increases to 2911.52
in another 40 iterations. Again, using !CONTINUE to start
with the XFA1 values, part 2 fits an XFA2 model.
After 40 iterations, the LogL had reached 3045 and another 40
iterations increased it to 3050.40. The parameters were still
changing slightly but this provides two factors and permits a biplot
of genotypes and experiments to be formed.
Proceeding to an XFA3 model starts to present difficulties which are
not yet (April 2008) resolved. The LogL increases nicely to 3157.10
at iteration 35 and then drops away. There are three options
you can try at this point. One involves fixing some parameters while others are estimated. Another involves the !AILOADINGS qualifier.
A pragmatic option is to rerun the job set (with !MAXIT)
to stop at the iteration with the highest LogL and accept that as the solution.
Using the !AILOADINGS qualifier in this example, XFA3
converged to LogL 3124. An increase in LogL of 107 for 85 effects
is about twice the 5% critical value.
Proceeding to XFA4 is probably ambitious.
Starting from the 3157 solution, the LogL increases briefly but quickly
starts decreasing. Using !AILOADINGS, the LogL converges at around 3188.
The next strategy is to fix loadings 1:3 initially. This converges to a LogL
of 3204. Continuing with !AILOADING but allowing the
first three loadings to readjust allows the LogL to increase to about 3213
which is close to the 5% critical value.
ASReml 3 produces orthogonal vectors when converged
if the user does not impose constraints. Following is
some R code for looking at the results
after extracting the XFA parameters into a file say albus4.xfa.
# copy XFA gammas from .asr file to albus4.xfa
XFAm <- matrix(scan('../albus4.gam'),87,5) # Read PSI and loadings
dimnames(XFAm) <- list(paste('S',1:87,sep='')
,c("Psi","Load1,"Load2,"Load3,"Load4))
pairs(XFAm) # Create figure 16.8
ss <- svd(XFAm[,-1])
Lam <- XFAm[,-1] %*% ss$v
colnames(Lam) <- c("Load1,"Load2,"Load3,"Load4)
Gvar <- Lam %*% t(Lam) + diag(XFAm[,1])
cLam <- diag(1/sqrt(diag(Gvar))) %*% Lam
XFAsln <- read.table('../albus4.sln') # Scores
XFA4<-matrix(XFAslnV3[XFAslnV1=='xfa(trial,4).var'],203,91)
scores <- XFA4[,88:91] %*% ss$v
dimnames(scores)<-list(paste('V',1:203,sep='')
,paste('Load'1:4,sep=''))
biplot(scores[,1:2],Lam[,1:2]) # Figure 16.9
Figure 1: Pairs plot for the lupin loadings
Figure 1 shows a pairs plot of the specific variances (Ψ)
and loadings (Γ). Recall that the XFA variance structure was
defined as Σ = ΓΓ' + Ψ.
These values have not been finally rotated and loading 4 is not
orthogonal to the others. The next step in the R script
generates orthogonal loadings in Lam for use in the biplot.
While the XFA model was defined in terms of modelling the variance
matrix, it can also be viewed as modelling the variance structure
with underlying (latent) factors, hence the name factor analysis.
In this case we
have fitted four factors and the loadings are the regressions
linking the site.variety BLUPs with the factor scores.
The specific variances represent the lack of fit.
The proportion of variance explained by the 4 factors is 89.9%
calculated as
mean(diag(Lam %*% t(Lam))/diag(Gvar)).
The separate amounts are 42.9%, 24.8%, 12.9% and 9.3% respectively.
cLam is correlation of environments
with factors. Examine the Ψ values to identify
sites which buck the trends.
The variety effects with respect to the factors are
reported in the .sln file. The next few commands
extract them and rotate them for plotting in the biplot
shown in figure 2. Well, thats a bit cluttered.
Figure 3 omits the central cluster.
Figure 2: Biplot for the lupin factors 1 and 2
mLam <- rep(1/87,87) %*% Lam #Get loading means
sLam <- Lam - rep(mLam,rep(87,4)) # Centre Loadings
dLam <- sqrt((sLam*sLam) %*% rep(1,4) ) # Distance from Centre
dSco <- sqrt((scores*scores) %*% rep(1,4))
biplot(Lam[dLam>0.1,1:2],scores[dSco>2,1:2])
Figure 3: Biplot plot for the lupin loadings
The following tables show the scores for the more extreme varieties,
and the loadings for the more extreme sites.
cbind(scores[dSco>2.8,],dSco[dSco>2.8])
Loadg1 Loadg2 Loadg3 Loadg4 Dist
V34 -2.4508 1.3773 -0.0762 0.8908 2.950
V107 -1.5465 -0.0070 2.6319 0.3389 3.071
V182 2.6397 0.9211 0.1007 -0.2059 2.805
cbind(Lam[dLam>0.325,],dLam[dLam>.325])
Load1 Load2 Load3 Load4 Dist
S36 -0.4141 -0.0062 -0.0054 0.0801 0.3252
S75 -0.0535 0.3655 -0.0185 -0.0114 0.3623
S86 0.2199 -0.0116 0.2003 0.0276 0.3761
Return to start