X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=man%2Fmst.Rd;h=936b2b9a8dcb0d5f0e822597e126af9d4e8ebc58;hb=821974300c3d4c88584832e3f4b2c99ed56601cb;hp=556d706097d3f85ff119bf2e917f491e3dd47d7c;hpb=c827059eeafc8cbe41c812b26979543ab287803e;p=ape.git diff --git a/man/mst.Rd b/man/mst.Rd index 556d706..936b2b9 100644 --- a/man/mst.Rd +++ b/man/mst.Rd @@ -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)