#' @title ggplot-based plot for objects of class \code{"decorana"}
#'
#' @description
#' Produces a multi-layer ggplot object representing the output of objects produced by \code{\link[vegan]{decorana}}.
#'
#' @details
#' TODO
#'
#' @param object an object of class \code{"decorana"}, the result of a call to \code{\link[vegan]{decorana}}.
#' @param axes numeric; which axes to plot, given as a vector of length 2.
#' @param geom character; which geoms to use for the layers. Can be a
#' vector of length equal to \code{length(display)}, in which case the
#' \emph{i}th element of \code{type} refers to the \emph{i}th element
#' of \code{display}.
#' @param layers character; which scores to plot as layers
#' @param legend.position character or two-element numeric vector; where to position the legend. See \code{\link[ggplot2]{theme}} for details. Use \code{"none"} to not draw the legend.
#' @param xlab character; label for the x-axis
#' @param ylab character; label for the y-axis
#' @param title character; subtitle for the plot
#' @param subtitle character; subtitle for the plot
#' @param caption character; caption for the plot
#' @param ... Additional arguments passed to \code{\link{fortify.decorana}}.
#' @return Returns a ggplot object.
#' @author Gavin L. Simpson
#'
#' @export
#'
#' @importFrom grid arrow unit
#' @importFrom ggplot2 autoplot ggplot geom_point geom_text geom_segment labs coord_fixed aes_string
#'
#' @examples
#' data(dune)
#'
#' sol <- decorana(dune)
#' autoplot(sol)
#' autoplot(sol, display = "species", geom = "text")
`autoplot.decorana` <- function(object, axes = c(1,2), geom = c("point", "text"),
layers = c("species", "sites"),
legend.position = "right",
title = NULL, subtitle = NULL, caption = NULL,
ylab, xlab, ...) {
axes <- rep(axes, length.out = 2L)
obj <- fortify(object, axes = axes, ...)
LAYERS <- levels(obj$score)
## sort out x, y aesthetics
vars <- getDimensionNames(obj)
## match the geom
geom <- match.arg(geom)
point <- TRUE
if (isTRUE(all.equal(geom, "text")))
point <- FALSE
## subset out the layers wanted
### need something here first to match acceptable ones?
### or just check that the layers selected would return a df with
### at least 1 row.
obj <- obj[obj$score %in% layers, , drop = FALSE]
## skeleton layer
plt <- ggplot()
## add plot layers as required
want <- obj$score %in% c("species", "sites")
if (point) {
plt <- plt +
geom_point(data = obj[want, , drop = FALSE ],
aes_string(x = vars[1], y = vars[2], shape = 'score',
colour = 'score'))
} else {
plt <- plt +
geom_text(data = obj[want, , drop = FALSE ],
aes_string(x = vars[1], y = vars[2], label = 'label',
colour = 'score'))
}
if(missing(xlab)) {
xlab <- vars[1]
}
if(missing(ylab)) {
ylab <- vars[2]
}
plt <- plt + labs(x = xlab, y = ylab, title = title, subtitle = subtitle,
caption = caption)
## add equal scaling
plt <- plt + coord_fixed(ratio = 1)
## do we want a legend
plt <- plt + theme(legend.position = legend.position)
plt
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.