More information about the contrast program in PHYLIP can be found here http://evolution.genetics.washington.edu/phylip/doc/contrast.html.
Obviously, use of any of the functions of this package requires that PHYLIP (Felsenstein 1989, 2013) should first be installed. Instructions for installing PHYLIP can be found on the PHYLIP webpage: http://evolution.genetics.washington.edu/phylip.html.
Rcontrast(tree, X, path=NULL, ...)
"phylo"
.X
can be a matrix with one column or a vector with names(X)
containing species names matching tree$tip.label
. For within-species contrasts analysis, the matrix should contain repeating (identical) row names for conspecifics.path = NULL
, the R will search several commonly used directories for the correct executable file.X
contains one observation per species (say, the species mean), then Rcontrast
returns a list with the following components: Contrasts
, a matrix with all phylogenetically independent contrats; Covariance_matrix
, a matrix containing the evolutionary variances (on diagonals) and covariances; Regressions
, a matrix containing the pair-wise bivariate regression coefficients (columns on rows); Correlations
, a correlation matrix of contrasts.If X
contains more than one sample per species, then Rcontrast
returns a list with the following elements: VarA
, the estimated among-species variance-covariance matrix; VarE
, the estimated within-species (i.e., 'environmental') variance-covariance matrix; VarA.Regression
, a matrix containing the pair-wise bivariate among-species regression coefficients (columns on rows); VarA.Correlations
, a matrix with the among-species evolutionary correlations; VarE.Regressions
, the pair-wise bivariate within-species regression coefficients; VarE.Correlations
, the within-species correlations; nonVa.VarE
, nonVa.VarE.Regressions
, and nonVa.VarA.Correlations
, estimates obtained when VarA
is not included in the model; logLik
and nonVa.logLik
, log-likelihood when VarA
is included (or not) in the model; k
and nonVa.k
the number of parameters estimated in each model; and P
the p-value of a likelihood-ratio test of VarA
, in which df = k - nonVa.k
.
quiet
suppress some output to R console (defaults to quiet = FALSE
); and cleanup
remove PHYLIP input/output files after the analysis is completed (defaults to cleanup = TRUE
).
Felsenstein, J. (1989) PHYLIP--Phylogeny Inference Package (Version 3.2). Cladistics, 5, 164-166.
Felsenstein, J. (2008) Comparative methods with sampling error and within-species variation: Contrasts revisited and revised. American Naturalist, 171, 713-725.
Felsenstein, J. (2013) PHYLIP (Phylogeny Inference Package) version 3.695. Distributed by the author. Department of Genome Sciences, University of Washington, Seattle.
pic
, Rcontml
, Rthreshml
## Not run:
# data(cotton)
# contrasts<-Rcontrast(tree = cotton$tree, X = cotton$data)
# ## End(Not run)
Run the code above in your browser using DataLab