Compute the following diversity indices and perform corresponding statistical tests to compare the phenotypic diversity for qualitative traits between entire collection (EC) and core set (CS).

  • Simpson's and related indices

    • Simpson's Index (\(d\)) (Simpson 1949; Peet 1974)

    • Simpson's Index of Diversity or Gini's Diversity Index or Gini-Simpson Index or Nei's Diversity Index or Nei's Variation Index (\(D\)) (Gini 1912, 1912; Greenberg 1956; Berger and Parker 1970; Nei 1973; Peet 1974)

    • Maximum Simpson's Index of Diversity or Maximum Nei's Diversity/Variation Index (\(D_{max}\)) (Hennink and Zeven 1990)

    • Simpson's Reciprocal Index or Hill's \(N_{2}\) (\(D_{R}\)) (Williams 1964; Hill 1973)

    • Relative Simpson's Index of Diversity or Relative Nei's Diversity/Variation Index (\(D'\)) (Hennink and Zeven 1990)

  • Shannon-Weaver and related indices

    • Shannon or Shannon-Weaver or Shannon-Weiner Diversity Index (\(H\)) (Shannon and Weaver 1949; Peet 1974)

    • Maximum Shannon-Weaver Diversity Index (\(H_{max}\)) (Hennink and Zeven 1990)

    • Relative Shannon-Weaver Diversity Index or Shannon Equitability Index (\(H'\)) (Hennink and Zeven 1990)

  • McIntosh Diversity Index

    • McIntosh Diversity Index (\(D_{Mc}\)) (McIntosh 1967; Peet 1974)

diversity.evaluate.core(data, names, qualitative, selected, base = 2, R = 1000)

Arguments

data

The data as a data frame object. The data frame should possess one row per individual and columns with the individual names and multiple trait/character data.

names

Name of column with the individual names as a character string

qualitative

Name of columns with the qualitative traits as a character vector.

selected

Character vector with the names of individuals selected in core collection and present in the names column.

base

The logarithm base to be used for computation of Shannon-Weaver Diversity Index (\(I\)). Default is 2.

R

The number of bootstrap replicates. Default is 1000.

Value

A list with three data frames as follows.

simpson

EC_No.Classes

The number of classes in the trait for EC.

CS_No.Classes

The number of classes in the trait for CS.

EC_d

The Simpson's Index (\(d\)) for EC.

EC_D

The Simpson's Index of Diversity (\(D\)) for EC.

EC_D.max

The Maximum Simpson's Index of Diversity (\(D_{max}\)) for EC.

EC_D.inv

The Simpson's Reciprocal Index (\(D_{R}\)) for EC.

EC_D.rel

The Relative Reciprocal Index (\(D'\)) for EC.

EC_d.V

The variance of \(d\) for EC according to (Simpson 1949) .

EC_d.boot.V

The bootstrap variance of \(d\) for EC.

CS_d

The Simpson's Index (\(d\)) for CS.

CS_D

The Simpson's Index of Diversity (\(D\)) for CS.

CS_D.max

The Maximum Simpson's Index of Diversity (\(D_{max}\)) for CS.

CS_D.inv

The Simpson's Reciprocal Index (\(D_{R}\)) for CS.

CS_D.rel

The Relative Reciprocal Index (\(D'\)) for CS.

CS_d.V

The variance of \(d\) for CS according to (Simpson 1949) .

CS_d.boot.V

The bootstrap variance of \(d\) for CS.

d.t.df

The degrees of freedom for t test.

d.t.stat

The t statistic.

d.t.pvalue

The p value for t test.

d.t.significance

The significance of t test for t-test

d.boot.z.df

The degrees of freedom for bootstrap z score.

d.boot.z.stat

The bootstrap z score.

d.boot.z.pvalue

The p value of z score.

d.boot.z.significance

The significance of z score.

shannon

EC_No.Classes

The number of classes in the trait for EC.

CS_No.Classes

The number of classes in the trait for CS.

EC_I

The Shannon-Weaver Diversity Index (\(I\)) for EC.

EC_I.max

The Maximum Shannon-Weaver Diversity Index (\(I_{max}\)) for EC.

EC_I.rel

The Relative Shannon-Weaver Diversity Index (\(I'\)) for EC.

EC_I.V

The variance of \(I\) for EC according to (Hutcheson 1970) .

EC_I.boot.V

The bootstrap variance of \(I\) for EC.

CS_I

The Shannon-Weaver Diversity Index (\(I\)) for CS.

CS_I.max

The Maximum Shannon-Weaver Diversity Index (\(I_{max}\)) for CS.

CS_I.rel

The Relative Shannon-Weaver Diversity Index (\(I'\)) for CS.

CS_I.V

The variance of \(I\) for CS according to (Hutcheson 1970) .

CS_I.boot.V

The bootstrap variance of \(I\) for CS.

I.t.stat

The t statistic.

I.t.df

The degrees of freedom for t test.

I.t.pvalue

The p value for t test.

I.t.significance

The significance of t test for t-test

I.boot.z.df

The degrees of freedom for bootstrap z score.

I.boot.z.stat

The bootstrap z score.

I.boot.z.pvalue

The p value of z score.

I.boot.z.significance

The significance of z score.

mcintosh

CS_No.Classes

The number of classes in the trait for CS.

EC_D.Mc

The McIntosh Index (\(D_{Mc}\)) for EC.

CS_D.Mc

The McIntosh Index (\(D_{Mc}\)) for CS.

M.boot.z.stat

The bootstrap z score.

M.boot.z.df

The degrees of freedom for bootstrap z score.

M.boot.z.pvalue

The p value of z score.

M.boot.z.significance

The significance of z score.

Details

The diversity indices and the corresponding statistical tests implemented in diversity.evaluate.core are as follows.

Simpson's index (\(d\)) which estimates the probability that two accessions randomly selected will belong to the same phenotypic class of a trait, is computed as follows (Simpson 1949; Peet 1974) .

\[d = \sum_{i = 1}^{k}p_{i}^{2}\]

Where, \(p_{i}\) denotes the proportion/fraction/frequency of accessions in the \(i\)th phenotypic class for a trait and \(k\) is the number of phenotypic classes for the trait.

The value of \(d\) can range from 0 to 1 with 0 representing maximum diversity and 1, no diversity.

\(d\) is subtracted from 1 to give Simpson's index of diversity (\(D\)) (Greenberg 1956; Berger and Parker 1970; Peet 1974; Hennink and Zeven 1990) originally suggested by Gini (1912, 1912) and described in literature as Gini's diversity index or Gini-Simpson index. It is the same as Nei's diversity index or Nei's variation index (Nei 1973; Hennink and Zeven 1990) . Greater the value of \(D\), greater the diversity with a range from 0 to 1.

\[D = 1 - d\]

The maximum value of \(D\), \(D_{max}\) occurs when accessions are uniformly distributed across the phenotypic classes and is computed as follows (Hennink and Zeven 1990) .

\[D_{max} = 1 - \frac{1}{k}\]

Reciprocal of \(d\) gives the Simpson's reciprocal index (\(D_{R}\)) (Williams 1964; Hennink and Zeven 1990) and can range from 1 to \(k\). This was also described in Hill (1973) as (\(N_{2}\)).

\[D_{R} = \frac{1}{d}\]

Relative Simpson's index of diversity or Relative Nei's diversity/variation index (\(H'\)) (Hennink and Zeven 1990) is defined as follows (Peet 1974) .

\[D' = \frac{D}{D_{max}}\]

Differences in Simpson's diversity index for qualitative traits of EC and CS can be tested by a t-test using the associated variance estimate described in Simpson (1949) (Lyons and Hutcheson 1978) .

The t statistic is computed as follows.

\[t = \frac{d_{EC} - d_{CS}}{\sqrt{V_{d_{EC}} + V_{d_{CS}}}}\]

Where, the variance of \(d\) (\(V_{d}\)) is,

\[V_{d} = \frac{4N(N-1)(N-2)\sum_{i=1}^{k}(p_{i})^{3} + 2N(N-1)\sum_{i=1}^{k}(p_{i})^{2} - 2N(N-1)(2N-3) \left( \sum_{i=1}^{k}(p_{i})^{2} \right)^{2}}{[N(N-1)]^{2}}\]

The associated degrees of freedom is computed as follows.

\[df = (k_{EC} - 1) + (k_{CS} - 1)\]

Where, \(k_{EC}\) and \(k_{CS}\) are the number of phenotypic classes in the trait for EC and CS respectively.

An index of information \(H\), was described by Shannon and Weaver (1949) as follows.

\[H = -\sum_{i=1}^{k}p_{i} \log_{2}(p_{i})\]

\(H\) is described as Shannon or Shannon-Weaver or Shannon-Weiner diversity index in literature.

Alternatively, \(H\) is also computed using natural logarithm instead of logarithm to base 2.

\[H = -\sum_{i=1}^{k}p_{i} \ln(p_{i})\]

The maximum value of \(H\) (\(H_{max}\)) is \(\ln(k)\). This value occurs when each phenotypic class for a trait has the same proportion of accessions.

\[H_{max} = \log_{2}(k)\;\; \textrm{OR} \;\; H_{max} = \ln(k)\]

The relative Shannon-Weaver diversity index or Shannon equitability index (\(H'\)) is the Shannon diversity index (\(I\)) divided by the maximum diversity (\(H_{max}\)).

\[H' = \frac{H}{H_{max}}\]

Differences in Shannon-Weaver diversity index for qualitative traits of EC and CS can be tested by Hutcheson t-test (Hutcheson 1970) .

The Hutcheson t statistic is computed as follows.

\[t = \frac{H_{EC} - H_{CS}}{\sqrt{V_{H_{EC}} + V_{H_{CS}}}}\]

Where, the variance of \(H\) (\(V_{H}\)) is,

\[V_{H} = \frac{\sum_{i=1}^{k}n_{i}(\log_{2}{n_{i}})^{2} \frac{(\sum_{i=1}^{k}\log_{2}{n_{i}})^2}{N}}{N^{2}}\]

\[\textrm{OR}\]

\[V_{H} = \frac{\sum_{i=1}^{k}n_{i}(\ln{n_{i}})^{2} \frac{(\sum_{i=1}^{k}\ln{n_{i}})^2}{N}}{N^{2}}\]

The associated degrees of freedom is approximated as follows.

\[df = \frac{(V_{H_{EC}} + V_{H_{CS}})^{2}}{\frac{V_{H_{EC}}^{2}}{N_{EC}} + \frac{V_{H_{CS}}^{2}}{N_{CS}}}\]

McIntosh Diversity Index

A similar index of diversity was described by McIntosh (1967) as follows (\(D_{Mc}\)) (Peet 1974) .

\[D_{Mc} = \frac{N - \sqrt{\sum_{i=1}^{k}n_{i}^2}}{N - \sqrt{N}}\]

Where, \(n_{i}\) denotes the number of accessions in the \(i\)th phenotypic class for a trait and \(N\) is the total number of accessions so that \(p_{i} = {n_{i}}/{N}\).

Testing for difference with bootstrapping

Bootstrap statistics are employed to test the difference between the Simpson, Shannon-Weaver and McIntosh indices for qualitative traits of EC and CS (Solow 1993) .

If \(I_{EC}\) and \(I_{CS}\) are the diversity indices with the original number of accessions, then random samples of the same size as the original are repeatedly generated (with replacement) \(R\) times and the corresponding diversity index is computed for each sample.

\[I_{EC}^{*} = \lbrace H_{EC_{1}}, H_{EC_{}}, \cdots, H_{EC_{R}} \rbrace\]

\[I_{CS}^{*} = \lbrace H_{CS_{1}}, H_{CS_{}}, \cdots, H_{CS_{R}} \rbrace\]

Then the bootstrap null sample \(I_{0}\) is computed as follows.

\[\Delta^{*} = I_{EC}^{*} - I_{CS}^{*}\]

\[I_{0} = \Delta^{*} - \overline{\Delta^{*}}\]

Where, \(\overline{\Delta^{*}}\) is the mean of \(\Delta^{*}\).

Now the original difference in diversity indices (\(\Delta_{0} = I_{EC} - I_{CS}\)) is tested against mean of bootstrap null sample (\(I_{0}\)) by a z test. The z score test statistic is computed as follows.

\[z = \frac{\Delta_{0} - \overline{H_{0}}}{\sqrt{V_{H_{0}}}}\]

Where, \(\overline{H_{0}}\) and \(V_{H_{0}}\) are the mean and variance of the bootstrap null sample \(H_{0}\).

The corresponding degrees of freedom is estimated as follows.

\[df = (k_{EC} - 1) + (k_{CS} - 1)\]

References

Berger WH, Parker FL (1970). “Diversity of planktonic foraminifera in deep-sea sediments.” Science, 168(3937), 1345--1347.

Gini C (1912). Variabilita e Mutabilita. Contributo allo Studio delle Distribuzioni e delle Relazioni Statistiche. [Fasc. I.]. Tipogr. di P. Cuppini, Bologna.

Gini C (1912). “Variabilita e mutabilita.” In Pizetti E, Salvemini T (eds.), Memorie di Metodologica Statistica. Liberia Eredi Virgilio Veschi, Roma, Italy.

Greenberg JH (1956). “The measurement of linguistic diversity.” Language, 32(1), 109.

Hennink S, Zeven AC (1990). “The interpretation of Nei and Shannon-Weaver within population variation indices.” Euphytica, 51(3), 235--240.

Hill MO (1973). “Diversity and evenness: A unifying notation and its consequences.” Ecology, 54(2), 427--432.

Hutcheson K (1970). “A test for comparing diversities based on the Shannon formula.” Journal of Theoretical Biology, 29(1), 151--154.

Lyons NI, Hutcheson K (1978). “C20. Comparing diversities: Gini's index.” Journal of Statistical Computation and Simulation, 8(1), 75--78.

McIntosh RP (1967). “An index of diversity and the relation of certain concepts to diversity.” Ecology, 48(3), 392--404.

Nei M (1973). “Analysis of gene diversity in subdivided populations.” Proceedings of the National Academy of Sciences, 70(12), 3321--3323.

Peet RK (1974). “The measurement of species diversity.” Annual Review of Ecology and Systematics, 5(1), 285--307.

Shannon CE, Weaver W (1949). The Mathematical Theory of Communication, number v. 2 in The Mathematical Theory of Communication. University of Illinois Press.

Simpson EH (1949). “Measurement of diversity.” Nature, 163(4148), 688--688.

Solow AR (1993). “A simple test for change in community structure.” The Journal of Animal Ecology, 62(1), 191.

Williams CB (1964). Patterns in the Balance of Nature and Related Problems in Quantitative Ecology. Academic Press.

See also

Examples


data("cassava_CC")
data("cassava_EC")

ec <- cbind(genotypes = rownames(cassava_EC), cassava_EC)
ec$genotypes <- as.character(ec$genotypes)
rownames(ec) <- NULL

core <- rownames(cassava_CC)

quant <- c("NMSR", "TTRN", "TFWSR", "TTRW", "TFWSS", "TTSW", "TTPW", "AVPW",
           "ARSR", "SRDM")
qual <- c("CUAL", "LNGS", "PTLC", "DSTA", "LFRT", "LBTEF", "CBTR", "NMLB",
          "ANGB", "CUAL9M", "LVC9M", "TNPR9M", "PL9M", "STRP", "STRC",
          "PSTR")

ec[, qual] <- lapply(ec[, qual],
                     function(x) factor(as.factor(x)))

# \donttest{
diversity.evaluate.core(data = ec, names = "genotypes",
                        qualitative = qual, selected = core)
#> $simpson
#>     Trait EC_No.Classes CS_No.Classes              EC_d              EC_D
#> 1    CUAL             5             4 0.379231526565524 0.620768473434476
#> 2    LNGS             3             3 0.422400150078142 0.577599849921858
#> 3    PTLC             5             5 0.477398006104682 0.522601993895318
#> 4    DSTA             5             5 0.351400071089646 0.648599928910354
#> 5    LFRT             5             4 0.448935347916114 0.551064652083886
#> 6   LBTEF             6             6 0.223971174841036 0.776028825158964
#> 7    CBTR             3             3  0.51874284166756  0.48125715833244
#> 8    NMLB            10             9 0.206703725435988 0.793296274564012
#> 9    ANGB             4             4 0.350516387291879 0.649483612708121
#> 10 CUAL9M             5             5 0.309073521363567 0.690926478636433
#> 11  LVC9M             5             5 0.425299451029954 0.574700548970046
#> 12 TNPR9M             5             5 0.247165582455527 0.752834417544473
#> 13   PL9M             3             2 0.498635332682619 0.501364667317381
#> 14   STRP             4             4 0.322189843207836 0.677810156792164
#> 15   STRC             2             2 0.510325630074306 0.489674369925694
#> 16   PSTR             3             2 0.555306757465823 0.444693242534177
#>             EC_D.max         EC_D.inv          EC_D.rel               EC_d.V
#> 1                0.8 2.63691156971154 0.775960591793095  6.2401326584027e-05
#> 2  0.666666666666667 2.36742340128195 0.866399774882787  2.6630307524352e-05
#> 3                0.8 2.09468826265002 0.653252492369147 6.43256463380356e-05
#> 4                0.8 2.84575924216273 0.810749911137942 4.49202770089222e-05
#> 5                0.8 2.22749223165839 0.688830815104857 3.64033438958826e-05
#> 6  0.833333333333333 4.46486026922774 0.931234590190757 1.01110395238633e-05
#> 7  0.666666666666667 1.92773744459853  0.72188573749866 4.63756492257553e-05
#> 8                0.9 4.83784217188518 0.881440305071124 1.57355754103247e-05
#> 9               0.75 2.85293366089411 0.865978150277494 3.10366375721298e-05
#> 10               0.8 3.23547612745411 0.863658098295541 1.34905804296261e-05
#> 11               0.8 2.35128448338761 0.718375686212558 4.98247003940663e-05
#> 12               0.8 4.04587074812462 0.941043021930592 2.56650302792209e-05
#> 13 0.666666666666667   2.005473608579 0.752047000976072 3.79031161219323e-06
#> 14              0.75 3.10376016215672 0.903746875722886 9.34647324671546e-06
#> 15               0.5  1.9595331707216 0.979348739851389 1.21791747807758e-05
#> 16 0.666666666666667 1.80080646697613 0.667039863801265  6.1357244865428e-05
#>             EC_d.boot.V              CS_d              CS_D          CS_D.max
#> 1  6.09528100648911e-05 0.378472222222222 0.621527777777778              0.75
#> 2   2.6721581522594e-05 0.387755102040816 0.612244897959184 0.666666666666667
#> 3  6.57531237081101e-05 0.421343537414966 0.578656462585034               0.8
#> 4  4.32897698295606e-05 0.303500566893424 0.696499433106576               0.8
#> 5  3.54012778918776e-05 0.426587301587302 0.573412698412698              0.75
#> 6  9.93893885681588e-06 0.200538548752834 0.799461451247166 0.833333333333333
#> 7  4.54222373683763e-05 0.487244897959184 0.512755102040816 0.666666666666667
#> 8  1.55108875353918e-05 0.198058390022676 0.801941609977324 0.888888888888889
#> 9  3.10410142356705e-05 0.342120181405896 0.657879818594104              0.75
#> 10 1.41351950175709e-05 0.288052721088435 0.711947278911565               0.8
#> 11 4.93588484057504e-05 0.388676303854875 0.611323696145125               0.8
#> 12  2.4697787852265e-05   0.2218679138322   0.7781320861678               0.8
#> 13 3.85851415513127e-06 0.500283446712018 0.499716553287982               0.5
#> 14 9.54766019687746e-06 0.311862244897959 0.688137755102041              0.75
#> 15 1.21307777942816e-05 0.518140589569161 0.481859410430839               0.5
#> 16   6.452526895584e-05 0.555555555555556 0.444444444444444               0.5
#>            CS_D.inv          CS_D.rel               CS_d.V          CS_d.boot.V
#> 1  2.64220183486239 0.828703703703704 0.000664974207441761 0.000628561176013509
#> 2  2.57894736842105 0.918367346938775 0.000253494320337725 0.000243977639960886
#> 3  2.37336024217962 0.723320578231292  0.00106773305088107  0.00106243364121077
#> 4  3.29488676161569  0.87062429138322 0.000464316667250201 0.000446585304752282
#> 5  2.34418604651163 0.764550264550265 0.000434218289438062 0.000437508230092865
#> 6  4.98657243816255 0.959353741496599   6.056274702847e-05 5.21238759848026e-05
#> 7  2.05235602094241 0.769132653061224 0.000257136051752955 0.000246982675606407
#> 8  5.04901610017889  0.90218431122449 0.000216132859442877 0.000214953672042989
#> 9  2.92294946147473 0.877173091458806 0.000360254817691854 0.000381467045054603
#> 10 3.47158671586716 0.889934098639456 0.000144703074224107 0.000146091118585118
#> 11 2.57283500455789 0.764154620181406 0.000503057233986994 0.000508802487748134
#> 12 4.50718620249122 0.972665107709751 0.000134121919501297 0.000123167203915527
#> 13 1.99886685552408 0.999433106575964 2.11737525161229e-05 2.01829151317429e-05
#> 14 3.20654396728016 0.917517006802721 8.69838142388246e-05 8.85698960713709e-05
#> 15 1.92997811816193 0.963718820861678  0.00022467592663519 0.000228946748265308
#> 16              1.8 0.888888888888889 0.000601970661850899 0.000593399485976873
#>    d.t.df             d.t.stat         d.t.pvalue d.t.significance d.boot.z.df
#> 1       7     0.02815376878219  0.978325351754391               ns           7
#> 2       4     2.06997700767548   0.10723294813912               ns           4
#> 3       8     1.66600295615056  0.134274950280504               ns           8
#> 4       8     2.12261420536943 0.0665538249488766               ns           8
#> 5       7      1.0301574783912  0.337209790540496               ns           7
#> 6      10     2.78735177789004 0.0192068432217536                *          10
#> 7       4     1.80798358527422  0.144886591272101               ns           4
#> 8      17    0.567755084270466  0.577623407084811               ns          17
#> 9       6    0.424456215383701  0.686031514328125               ns           6
#> 10      8      1.6713011659847  0.133206249679844               ns           8
#> 11      8     1.55754090990284  0.157957033254601               ns           8
#> 12      8     2.00128917457502 0.0803555866511262               ns           8
#> 13      3   -0.329859967245677  0.763196306139146               ns           3
#> 14      6     1.05224751693921  0.333206278005286               ns           6
#> 15      2   -0.507791421657648  0.662061546648583               ns           2
#> 16      3 -0.00966012858117729   0.99289893656246               ns           3
#>          d.boot.z.stat    d.boot.z.pvalue d.boot.z.significance
#> 1   0.0289584132923613  0.977706077873199                    ns
#> 2      2.1163729821146  0.101756937254872                    ns
#> 3     1.65338392267009  0.136852265387204                    ns
#> 4     2.18188795717211 0.0606836003806744                    ns
#> 5     1.04226041244695  0.331943945102461                    ns
#> 6     2.93610796496096 0.0148843333523579                     *
#> 7     1.85318858658238  0.137480653366135                    ns
#> 8    0.573880962872739  0.573563481068977                    ns
#> 9    0.408977538685226  0.696753801568227                    ns
#> 10    1.64540732742066    0.1385048303125                    ns
#> 11    1.55077922892721  0.159552249143758                    ns
#> 12    2.03668291207062 0.0760644040514377                    ns
#> 13   0.333046049072763  0.761016756537753                    ns
#> 14     1.0576600026718  0.330922348593608                    ns
#> 15   0.509622606200687  0.660982723244549                    ns
#> 16 0.00973633715758349  0.992842918754727                    ns
#> 
#> $shannon
#>     Trait EC_No.Classes CS_No.Classes              EC_I          EC_I.max
#> 1    CUAL             5             4  1.60118025300384   1.6094379124341
#> 2    LNGS             3             3  1.34638092645118  1.09861228866811
#> 3    PTLC             5             5  1.29757991678528   1.6094379124341
#> 4    DSTA             5             5  1.75217791456181   1.6094379124341
#> 5    LFRT             5             4  1.32020430332539   1.6094379124341
#> 6   LBTEF             6             6  2.26107917725546  1.79175946922805
#> 7    CBTR             3             3  1.04940762729587  1.09861228866811
#> 8    NMLB            10             9  2.46043656290491  2.30258509299405
#> 9    ANGB             4             4  1.63181278826841  1.38629436111989
#> 10 CUAL9M             5             5  1.81895733334165   1.6094379124341
#> 11  LVC9M             5             5  1.45781261313429   1.6094379124341
#> 12 TNPR9M             5             5  2.15936383275214   1.6094379124341
#> 13   PL9M             3             2  1.02393231699601  1.09861228866811
#> 14   STRP             4             4  1.70471635517281  1.38629436111989
#> 15   STRC             2             2 0.985051563686417 0.693147180559945
#> 16   PSTR             3             2 0.932902628052214  1.09861228866811
#>             EC_I.rel               EC_I.V          EC_I.boot.V
#> 1  0.994869227718287 0.000495550546246209 0.000500478256462913
#> 2   1.22552873323805 0.000266837142793751  0.00027760991843949
#> 3  0.806231732681647  0.00076741293709652 0.000764495155907523
#> 4   1.08868934988106 0.000644551217715297 0.000645926018044173
#> 5     0.820289054412   0.0005480962422548 0.000582100703818462
#> 6   1.26193231630002 0.000259759685726472 0.000264986010904686
#> 7  0.955211987086096 0.000312696844542425 0.000327851998328458
#> 8   1.06855402234261 0.000496178249738945 0.000498321779180061
#> 9   1.17710410864701 0.000306008701151613 0.000297748881794837
#> 10  1.13018173567856 0.000397228605602063 0.000382460904189658
#> 11  0.90578990458197 0.000698631874341118 0.000708290605282677
#> 12  1.34168818571345 0.000264448274894998 0.000262503018773464
#> 13 0.932023360340673  0.00010004153594366 0.000106621186189839
#> 14  1.22969291586506 0.000219120350395739 0.000212521582419488
#> 15  1.42112900595031 2.53468656861686e-05 2.60518261149287e-05
#> 16 0.849164566676391 0.000206905486943159 0.000214596362847361
#>                 CS_I          CS_I.max          CS_I.rel               CS_I.V
#> 1   1.60715392433211  1.38629436111989  1.15931649828959  0.00466900952090494
#> 2   1.44881563572518  1.09861228866811  1.31876882378736  0.00183098114336171
#> 3   1.60685189446012   1.6094379124341 0.998393216691366    0.009152696661561
#> 4   1.94652505102181   1.6094379124341  1.20944401519528  0.00501290672204481
#> 5   1.39390699808299  1.38629436111989  1.00549135679738  0.00481441616742965
#> 6    2.3831722498942  1.79175946922805    1.330073757568  0.00172264312694068
#> 7   1.12338192727968  1.09861228866811  1.02254629669362  0.00290287113955504
#> 8   2.56080478714959  2.19722457733622  1.16547248449867  0.00546163553548546
#> 9   1.69700114892879  1.38629436111989  1.22412757097122  0.00354899161566695
#> 10  1.92688046691671   1.6094379124341  1.19723814881589  0.00380714696318462
#> 11  1.59702066650884   1.6094379124341 0.992284731315619  0.00676974620846264
#> 12  2.24730159981114   1.6094379124341  1.39632699245436  0.00129552549169971
#> 13 0.999591034189098 0.693147180559945  1.44210502794168 7.02197242512667e-06
#> 14  1.74920954558179  1.38629436111989  1.26178796844324  0.00208634675528074
#> 15  0.97366806454962 0.693147180559945  1.40470608819769 0.000443961107972778
#> 16  0.91829583405449 0.693147180559945  1.32482084585941  0.00132275132275134
#>             CS_I.boot.V           I.t.stat           I.t.df          I.t.pvalue
#> 1   0.00480562376552929 -0.083123660050637 205.323489838581   0.933834195011031
#> 2   0.00190389717964702   -2.2364706637494 220.068588438014   0.026324103457891
#> 3   0.00975436742663595  -3.10514822627187 197.214845421711 0.00218182272218793
#> 4   0.00504134163483005  -2.58385107753543 213.627424864319  0.0104369229742795
#> 5   0.00486598368938334  -1.00646624014807  208.16009186019   0.315359849464886
#> 6   0.00189962243957371  -2.74217439229001 221.982338302533 0.00660128212793436
#> 7   0.00283263942725677  -1.30452382793487 205.904913192671   0.193511253079245
#> 8   0.00572492849237465  -1.30032759187611 199.746997945695   0.194987041994505
#> 9   0.00327400506431514  -1.04992396937323 198.073409342984   0.295032389672131
#> 10  0.00406495217186986  -1.66442333074281   204.6640656715  0.0975580697314574
#> 11  0.00749230319979225  -1.61083557606938 204.247107694347   0.108759859193218
#> 12  0.00153272490926273  -2.22646968440542 242.577447747539  0.0269016983557458
#> 13  5.4428106092502e-05   2.35246259571945 1837.93308927512  0.0187545059227447
#> 14  0.00213209754585181  -0.92664648595754  204.91630470168    0.35520019436459
#> 15 0.000518758648853524   0.52546865211132 187.669671190779   0.599877733009115
#> 16  0.00130914624498079  0.373471875118419 224.120762900574   0.709150296735107
#>    I.t.significance I.boot.z.df      I.boot.z.stat    I.boot.z.pvalue
#> 1                ns           7 0.0814155185672253  0.937390479125064
#> 2                 *           4   2.17012625279399 0.0957965847666416
#> 3                **           8   2.99598875336569 0.0171763823718015
#> 4                 *           8   2.54946869261093 0.0342029368526513
#> 5                ns           7   1.01498007480015  0.343905985513691
#> 6                **          10   2.62328519827353 0.0254538046535547
#> 7                ns           4   1.33161582845932  0.253802403771567
#> 8                ns          17   1.27580057379954  0.219183344785758
#> 9                ns           6   1.09349739209037  0.316122036476727
#> 10               ns           8   1.61679274885384  0.144585066218383
#> 11               ns           8   1.55127315842358  0.159435230393212
#> 12                *           8   2.09002282647133 0.0700155886847151
#> 13                *           3   1.98549502296823  0.141300749145812
#> 14               ns           6  0.923523546884622  0.391361319789632
#> 15               ns           2  0.491026342566424  0.672000253243908
#> 16               ns           3  0.373450651537337  0.733641766498944
#>    I.boot.z.significance
#> 1                     ns
#> 2                     ns
#> 3                      *
#> 4                      *
#> 5                     ns
#> 6                      *
#> 7                     ns
#> 8                     ns
#> 9                     ns
#> 10                    ns
#> 11                    ns
#> 12                    ns
#> 13                    ns
#> 14                    ns
#> 15                    ns
#> 16                    ns
#> 
#> $mcintosh
#>     Trait EC_No.Classes CS_No.Classes           EC_D.Mc           CS_D.Mc
#> 1    CUAL             5             4 0.393778012434178 0.416968887221027
#> 2    LNGS             3             3 0.358820738546382  0.40884307929476
#> 3    PTLC             5             5 0.316779500161785 0.380225207834671
#> 4    DSTA             5             5 0.417380876241608 0.486635921075666
#> 5    LFRT             5             4 0.338215427137732 0.375861861492538
#> 6   LBTEF             6             6 0.539900644138108 0.598348264293068
#> 7    CBTR             3             3 0.286749615427161 0.327215963767637
#> 8    NMLB            10             9 0.558974562677424 0.601358283540837
#> 9    ANGB             4             4 0.418145333938704 0.449791785009108
#> 10 CUAL9M             5             5 0.455147453452433 0.502026774187731
#> 11  LVC9M             5             5 0.356538441668976 0.408042032313971
#> 12 TNPR9M             5             5 0.515402077468806 0.573194332783244
#> 13   PL9M             3             2 0.301198604544138 0.317162433070916
#> 14   STRP             4             4 0.443181993303366 0.478468357680793
#> 15   STRC             2             2 0.292763414762376 0.303603702882552
#> 16   PSTR             3             2 0.261175379595452 0.275932675604997
#>        M.boot.z.stat M.boot.z.df      M.boot.z.pvalue M.boot.z.significance
#> 1   1.02756937825155           7    0.338344343021771                    ns
#> 2   3.79496673324823           4   0.0191866065531044                     *
#> 3   2.26112093496701           8   0.0536284663965344                    ns
#> 4    3.2531239293837           8   0.0116464944450465                     *
#> 5   2.11612518546809           7   0.0721330472553692                    ns
#> 6   5.95100597878787          10 0.000141051247321563                    **
#> 7   3.02275972535326           4   0.0390571880158876                     *
#> 8   2.48225397264992          17   0.0237957435130873                     *
#> 9   1.74938059198107           6    0.130802588581816                    ns
#> 10  3.84248119824936           8  0.00492980715298131                    **
#> 11  2.54466644076434           8    0.034459548440612                     *
#> 12  4.14376457763053           8  0.00323658746729461                    **
#> 13  4.23727436917642           3   0.0240618809490489                     *
#> 14  3.94919457545945           6  0.00754460565013074                    **
#> 15  0.97452643366258           2     0.43258009161777                    ns
#> 16 0.854260984884811           3     0.45574973148037                    ns
#> 
# }