]> git.donarmstrong.com Git - ape.git/blobdiff - man/mst.Rd
adding lmorigin + final correction to dist.topo
[ape.git] / man / mst.Rd
index 556d706097d3f85ff119bf2e917f491e3dd47d7c..06c9dfabdde237303e3da709fcef6b4746ff7522 100644 (file)
@@ -23,7 +23,7 @@ mst(X)
   \item{x2}{a numeric vector giving the coordinates of the observations
     on the \emph{y}-axis. Both \code{x1} and \code{x2} must be specified
     to be used.}
-  \item{...}{further arguments to be passed to \code{plot()}.}
+  \item{\dots}{further arguments to be passed to \code{plot()}.}
 }
 \description{
   The function \code{mst} finds the minimum spanning tree between a set of
@@ -61,9 +61,8 @@ mst(X)
   \code{\link[stats]{dist}}, \code{\link[graphics]{plot}}
 }
 \examples{
-library(stats)
-n <- 20
-X <- matrix(runif(n * 10), n, 10)
+require(stats)
+X <- matrix(runif(200), 20, 10)
 d <- dist(X)
 PC <- prcomp(X)
 M <- mst(d)