File: EH.Rd

package info (click to toggle)
r-cran-ade4 1.7-5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,924 kB
  • sloc: ansic: 4,890; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 868 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
\name{EH}
\alias{EH}
\title{Amount of Evolutionary History
}
\description{
computes the sum of branch lengths on an ultrametric phylogenetic tree.
}
\usage{
EH(phyl, select = NULL)
}
\arguments{
  \item{phyl}{an object of class phylog}
  \item{select}{a vector containing the numbers of the leaves (species) which must be considered 
  in the computation of the amount of Evolutionary History. This parameter allows the calculation 
  of the amount of Evolutionary History for a subset of species. }
}
\value{
returns a real value.
}
\references{
Nee, S. and May, R.M. (1997) Extinction and the loss of evolutionary history. \emph{Science},  
\bold{278}, 692--694.
}
\author{
Sandrine Pavoine \email{pavoine@mnhn.fr}
}
\examples{
data(carni70)
carni70.phy <- newick2phylog(carni70$tre)
EH(carni70.phy)
EH(carni70.phy, select = 1:15) # Felidae
}
\keyword{multivariate}