X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=man%2Fconsensus.Rd;h=6e1f5caa6b1c89534f3d9fcf371774538c2ab30b;hb=dca7b216e929337836a18374147b13eb793ffd95;hp=281eb4648e486d0b7399fc0aeee72d2d9d7d4267;hpb=c827059eeafc8cbe41c812b26979543ab287803e;p=ape.git diff --git a/man/consensus.Rd b/man/consensus.Rd index 281eb46..6e1f5ca 100644 --- a/man/consensus.Rd +++ b/man/consensus.Rd @@ -2,7 +2,7 @@ \alias{consensus} \title{Concensus Trees} \usage{ -consensus(..., p = 1) +consensus(..., p = 1, check.labels = TRUE) } \arguments{ \item{...}{either (i) a single object of class \code{"phylo"}, (ii) a @@ -10,6 +10,10 @@ consensus(..., p = 1) containing such objects.} \item{p}{a numeric value between 0.5 and 1 giving the proportion for a clade to be represented in the consensus tree.} + \item{check.labels}{a logical specifying whether to check the labels + of each tree. If \code{FALSE} (the default), it is assumed that all + trees have the same tip labels, and that they are in the same order + (see details).} } \description{ Given a series of trees, this function returns the consensus tree. By @@ -17,6 +21,13 @@ consensus(..., p = 1) majority-rule consensus tree, use \code{p = 0.5}. Any value between 0.5 and 1 can be used. } +\details{ + Using \code{check.labels = FALSE} results in + considerable decrease in computing times. This requires that all + trees have the same tip labels, \emph{and} these labels are + ordered similarly in all trees (in other words, the element + \code{tip.label} are identical in all trees). +} \value{ an object of class \code{"phylo"}. }