File: triangMtd.Rd

package info (click to toggle)
r-cran-ape 5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,932 kB
  • sloc: ansic: 7,626; cpp: 116; sh: 17; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 734 bytes parent folder | download | duplicates (3)
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
\name{triangMtd}
\alias{triangMtd}
\alias{triangMtds}
\title{Tree Reconstruction Based on the Triangles Method}
\usage{
triangMtd(X)
triangMtds(X)
}
\arguments{
  \item{X}{a distance matrix}.
}
\description{
  Fast distance-based construction method. Should only be used when
  distance measures are fairly reliable.
}
\value{
  an object of class \code{"phylo"}.
}
\references{
  \url{http://archive.numdam.org/ARCHIVE/RO/RO_2001__35_2/RO_2001__35_2_283_0/RO_2001__35_2_283_0.pdf}
}
\author{Andrei Popescu}
\seealso{
  \code{\link{nj}}, \code{\link{bionj}}, \code{\link{fastme}},
  \code{\link{njs}}, \code{\link{mvrs}}, \code{\link{SDM}}
}
\examples{
data(woodmouse)
tr <- triangMtd(dist.dna(woodmouse))
plot(tr)
}
\keyword{models}