axisPhylo {ape} | R Documentation |
This function adds a scaled axis on the side of a phylogeny plot.
axisPhylo(side = 1, ...)
side |
a numeric value specifying the side where the axis is plotted: 1: below, 2: left, 3: above, 4: right. |
... |
further arguments to be passed to axis . |
The further arguments (...
) are used to format the axis. They
may be font
, cex
, col
, las
, and so on (see
the help pages on axis
and
par
).
Emmanuel Paradis paradis@isem.univ-montp2.fr
plot.phylo
, add.scale.bar
,
axis
, par
tr <- rtree(30) ch <- chronogram(tr) plot(ch) axisPhylo() plot(tr, "c", FALSE, direction = "u") axisPhylo(2, las = 1)