gridplot.phylo4d | R Documentation |
Gridplot of Traits Values along a Phylogeny
## S3 method for class 'phylo4d'
gridplot(
p4d,
trait = names(tdata(p4d)),
center = TRUE,
scale = TRUE,
tree.ladderize = FALSE,
tree.type = "phylogram",
tree.ratio = NULL,
tree.xlim = NULL,
tree.open.angle = 0,
tree.open.crown = TRUE,
show.tip = TRUE,
tip.labels = NULL,
tip.col = "black",
tip.cex = 1,
tip.font = 3,
tip.adj = 0,
cell.col = white2red(100),
show.color.scale = TRUE,
show.trait = TRUE,
trait.labels = NULL,
trait.col = "black",
trait.cex = 0.7,
trait.font = 1,
trait.bg.col = "grey90",
show.box = FALSE,
grid.vertical = FALSE,
grid.horizontal = FALSE,
grid.col = "grey25",
grid.lty = "dashed",
...
)
p4d |
a |
trait |
the traits in the |
center |
a logical indicating whether traits values should be centered. |
scale |
a logical indicating whether traits values should be scaled. |
tree.ladderize |
a logical indicating whether the tree should be (right) ladderized. |
tree.type |
a character string specifying the type of phylogeny to be drawn.
Can be " |
tree.ratio |
a numeric value in [0, 1] giving the proportion of width of the figure for the tree. |
tree.xlim |
a numeric vector of length 2 giving the limits of the x-axis for the tree. If |
tree.open.angle |
a numeric value giving the angle in degrees left blank if |
tree.open.crown |
a logical indicating whether the crowns should be drawn following the value
of |
show.tip |
logical indicating whether tips labels should be drawn. |
tip.labels |
character vector to label the tips.
If |
tip.col |
a vector of R colors to use for the tips labels. Recycled if necessary. |
tip.cex |
a numeric vector to control character size of the tips labels. Recycled if necessary. |
tip.font |
an integer vector specifying the type of font for the tips labels: 1 (plain text), 2 (bold), 3 (italic), or 4 (bold italic). Recycled if necessary. |
tip.adj |
a vector of numeric in [0, 1] to control tips labels justification: 0 (left-justification), 0.5 (centering), or 1 (right-justification). Recycled if necessary. |
cell.col |
a vector of colors for |
show.color.scale |
logical indicating whether color scale should be drawn. |
show.trait |
logical indicating whether traits labels should be drawn. |
trait.labels |
character vector to label the traits.
If |
trait.col |
a vector of R colors to use for the traits labels. Recycled if necessary. |
trait.cex |
a numeric vector to control character size of the trait labels. Recycled if necessary. |
trait.font |
an integer vector specifying the type of font for the traits labels: 1 (plain text), 2 (bold), 3 (italic), or 4 (bold italic). Recycled if necessary. |
trait.bg.col |
a vector of R colors to use for the background of the barplots. Recycled if necessary. |
show.box |
a logical indicating whether a box should be drawn around the plots. |
grid.vertical |
a logical incating whether vertical lines of the grid should be drawn. |
grid.horizontal |
a logical incating whether horizontal lines of the grid should be drawn. |
grid.col |
a vector of R colors to use for the lines of the grid. |
grid.lty |
the lines type of the grid. Possibly a vector. |
... |
further arguments to be passed to |
data(navic)
gridplot(navic)
# Multivariate data
require(phylobase)
tipData(navic) <- matrix(rnorm(170), nrow = 17)
gridplot(navic)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.