#' Plot interactions
#'
#' --
#'
#' @param x.factor --.
#' @param trace.factor --.
#' @param response --.
#' @param fun --.
#' @param type --.
#' @param legend --.
#' @param trace.label --.
#' @param fixed --.
#' @param xlab --.
#' @param ylab --.
#' @param ylim --.
#' @param lty --.
#' @param col --.
#' @param pch --.
#' @param xpd --.
#' @param leg.bg --.
#' @param leg.bty --.
#' @param xtick --.
#' @param xaxt --.
#' @param axes --.
#' @param leg.x --.
#' @param leg.y --.
#' @param xlim --.
#' @param ... --.
#' @export
#' @examples
#' \dontrun{
#' --
#' }
#'
#'
interactionplot <- function (x.factor, trace.factor, response, fun = mean,
type = c("l", "p", "b", "o", "c"), legend = TRUE,
trace.label = deparse(substitute(trace.factor)),
fixed = FALSE, xlab = deparse(substitute(x.factor)),
ylab = ylabel, ylim = range(cells, na.rm = TRUE),
lty = nc:1, col = 1, pch = c(1L:9, 0, letters),
xpd = NULL, leg.bg = graphics::par("bg"), leg.bty = "n",
xtick = FALSE, xaxt = graphics::par("xaxt"), axes = TRUE,
leg.x=NULL, leg.y=NULL, xlim = NULL, ...) {
ylabel <- paste(deparse(substitute(fun)), "of ", deparse(substitute(response)))
type <- match.arg(type)
cells <- tapply(response, list(x.factor, trace.factor), fun)
nr <- nrow(cells)
nc <- ncol(cells)
xvals <- 1L:nr
if (is.ordered(x.factor)) {
wn <- getOption("warn")
options(warn = -1)
xnm <- as.numeric(levels(x.factor))
options(warn = wn)
if (!anyNA(xnm))
xvals <- xnm
}
xlabs <- rownames(cells)
ylabs <- colnames(cells)
nch <- max(sapply(ylabs, nchar, type = "width"))
if (is.null(xlabs))
xlabs <- as.character(xvals)
if (is.null(ylabs))
ylabs <- as.character(1L:nc)
if (is.null(xlim))
xlim <- range(xvals)+c(-.2,.2)
if (is.null(leg.x)) {
leg.x <- xlim[2L] + 0.05 * diff(xlim)
xlim <- xlim + c(-0.2/nr, if (legend) 0.2 + 0.02 * nch else 0.2/nr) *
diff(xlim)
}
grDevices::dev.hold()
on.exit(grDevices::dev.flush())
graphics::matplot(xvals, cells, ..., type = type, xlim = xlim, ylim = ylim,
xlab = xlab, ylab = ylab, axes = axes, xaxt = "n",
col = col, lty = lty, pch = pch)
if (axes && xaxt != "n") {
axisInt <- function(x, main, sub, lwd, bg, log, asp,
...) graphics::axis(1, x, ...)
mgp. <- graphics::par("mgp")
if (!xtick)
mgp.[2L] <- 0
axisInt(1, at = xvals, labels = xlabs, tick = xtick,
mgp = mgp., xaxt = xaxt, ...)
}
if (legend) {
yrng <- diff(ylim)
if (is.null(leg.y))
leg.y <- ylim[2L] - 0.1 * yrng
if (!is.null(xpd) || {
xpd. <- graphics::par("xpd")
!is.na(xpd.) && !xpd. && (xpd <- TRUE)
}) {
op <- graphics::par(xpd = xpd)
on.exit(graphics::par(op), add = TRUE)
}
# text(leg.x, ylim[2L] - 0.05 * yrng, paste(" ",
# trace.label), adj = 0)
if (!fixed) {
ord <- sort.list(cells[nr, ], decreasing = TRUE)
ylabs <- ylabs[ord]
lty <- lty[1 + (ord - 1)%%length(lty)]
col <- col[1 + (ord - 1)%%length(col)]
pch <- pch[ord]
}
legend(leg.x, leg.y, legend = ylabs, col = col,
title = if (trace.label == "") NULL else trace.label,
pch = if (type %in% c("p", "b"))
pch, lty = if (type %in% c("l", "b"))
lty, bty = leg.bty, bg = leg.bg)
}
invisible()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.