]> git.donarmstrong.com Git - ape.git/blobdiff - man/mst.Rd
BOTHlabels(... hozir = TRUE)
[ape.git] / man / mst.Rd
index 556d706097d3f85ff119bf2e917f491e3dd47d7c..936b2b9a8dcb0d5f0e822597e126af9d4e8ebc58 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
@@ -54,16 +54,15 @@ mst(X)
 \author{
   Yvonnick Noel \email{noel@univ-lille3.fr},
   Julien Claude \email{claude@isem.univ-montp2.fr} and
-  Emmanuel Paradis \email{Emmanuel.Paradis@mpl.ird.fr}
+  Emmanuel Paradis
 }
 \seealso{
   \code{\link{dist.dna}}, \code{\link{dist.gene}},
   \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)