Nothing
#' Draw a contour plot, typically relating to co-ordinates of a 2-dimensional reduction / embedding, typically contained within a \code{SingleCellExperiment} object.
#'
#' @param indata A data-frame or matrix, or \code{SingleCellExperiment} object. If a
#' data-frame or matrix, columns named in \code{dimColnames} will be extracted
#' from the data and used to generate the contour plot. If a
#' \code{SingleCellExperiment} object, a reduction named by \code{reducedDim} will be
#' taken from your object and used to generate the contour plot, again using
#' columns whose names are specified in \code{dimColnames}.
#' @param reducedDim A reduced dimensional embedding stored within \code{indata},
#' e.g., PCA or UMAP.
#' @param dimColnames The column names of the dimensions to use.
#' @param lowcol Shade for low-density contours.
#' @param highcol Shade for high-density contours.
#' @param alpha Control the gradient of colour transparency, with 1 being opaque.
#' @param contour The colour of the contour lines.
#' @param bins The number of bins that determine the overall density values.
#' @param legendPosition Position of legend \code{('top', 'bottom', 'left', 'right',
#' 'none')}.
#' @param legendLabSize Size of plot legend text.
#' @param legendIconSize Size of plot legend icons / symbols.
#' @param legendKeyHeight Height of the legend key.
#' @param xlim Limits of the x-axis.
#' @param ylim Limits of the y-axis.
#' @param celllab A vector containing any cells that the user wishes to label
#' in the plot.
#' @param labSize Size of labels.
#' @param labhjust Horizontal adjustment of label.
#' @param labvjust Vertical adjustment of label.
#' @param drawConnectors Logical, indicating whether or not to connect plot
#' labels to their corresponding points by line connectors.
#' @param widthConnectors Line width of connectors.
#' @param colConnectors Line colour of connectors.
#' @param xlab Label for x-axis.
#' @param xlabAngle Rotation angle of x-axis labels.
#' @param xlabhjust Horizontal adjustment of x-axis labels.
#' @param xlabvjust Vertical adjustment of x-axis labels.
#' @param ylab Label for y-axis.
#' @param ylabAngle Rotation angle of y-axis labels.
#' @param ylabhjust Horizontal adjustment of y-axis labels.
#' @param ylabvjust Vertical adjustment of y-axis labels.
#' @param axisLabSize Size of x- and y-axis labels.
#' @param title Plot title.
#' @param subtitle Plot subtitle.
#' @param caption Plot caption.
#' @param titleLabSize Size of plot title.
#' @param subtitleLabSize Size of plot subtitle.
#' @param captionLabSize Size of plot caption.
#' @param hline Draw one or more horizontal lines passing through this/these
#' values on y-axis. For single values, only a single numerical value is
#' necessary. For multiple lines, pass these as a vector, e.g., c(60,90).
#' @param hlineType Line type for hline \code{('blank', 'solid', 'dashed', 'dotted',
#' 'dotdash', 'longdash', 'twodash')}.
#' @param hlineCol Colour of hline.
#' @param hlineWidth Width of hline.
#' @param vline Draw one or more vertical lines passing through this/these
#' values on x-axis. For single values, only a single numerical value is
#' necessary. For multiple lines, pass these as a vector, e.g., c(60,90).
#' @param vlineType Line type for vline \code{('blank', 'solid', 'dashed', 'dotted',
#' 'dotdash', 'longdash', 'twodash')}.
#' @param vlineCol Colour of vline.
#' @param vlineWidth Width of vline.
#' @param gridlines.major Logical, indicating whether or not to draw major
#' gridlines.
#' @param gridlines.minor Logical, indicating whether or not to draw minor
#' gridlines.
#' @param borderWidth Width of the border on the x and y axes.
#' @param borderColour Colour of the border on the x and y axes.
#' @param verbose Boolean (TRUE / FALSE) to print messages to console or not.
#'
#' @details
#' Draw a contour plot, typically relating to co-ordinates of a 2-dimensional reduction / embedding, typically contained within a \code{SingleCellExperiment} object.
#'
#' @return A \code{ggplot2} object.
#'
#' @author Kevin Blighe <kevin@clinicalbioinformatics.co.uk>
#'
#' @examples
#' # create random data that follows a negative binomial
#' mat <- jitter(matrix(
#' MASS::rnegbin(rexp(1000, rate=.1), theta = 4.5),
#' ncol = 20))
#' colnames(mat) <- paste0('CD', 1:ncol(mat))
#'
#' u <- umap::umap(mat)$layout
#' colnames(u) <- c('UMAP1','UMAP2')
#'
#' contourPlot(u)
#'
#' @import SingleCellExperiment ggplot2
#'
#' @importFrom MASS rnegbin
#' @importFrom umap umap
#' @importFrom methods is
#'
#' @export
contourPlot <- function(
indata,
reducedDim = 'UMAP',
dimColnames = c('UMAP1','UMAP2'),
lowcol = 'darkblue',
highcol = 'darkred',
alpha = c(0.0, 0.5),
contour = 'black',
bins = 300,
legendPosition = 'right',
legendLabSize = 12,
legendIconSize = 5.0,
legendKeyHeight = 2.5,
xlim = NULL,
ylim = NULL,
celllab = NULL,
labSize = 3.0,
labhjust = 1.5,
labvjust = 0,
drawConnectors = TRUE,
widthConnectors = 0.5,
colConnectors = 'black',
xlab = dimColnames[1],
xlabAngle = 0,
xlabhjust = 0.5,
xlabvjust = 0.5,
ylab = dimColnames[2],
ylabAngle = 0,
ylabhjust = 0.5,
ylabvjust = 0.5,
axisLabSize = 16,
title = 'Cellular density and contours',
subtitle = '',
caption = ifelse(is(indata, 'SingleCellExperiment'),
paste0('Total cells, ',
nrow(as.data.frame(reducedDim(indata, reducedDim))), '; Bins, ', bins),
paste0('Total cells, ', nrow(indata), '; Bins, ', bins)),
titleLabSize = 16,
subtitleLabSize = 12,
captionLabSize = 12,
hline = NULL,
hlineType = 'longdash',
hlineCol = 'black',
hlineWidth = 0.4,
vline = NULL,
vlineType = 'longdash',
vlineCol = 'black',
vlineWidth = 0.4,
gridlines.major = TRUE,
gridlines.minor = TRUE,
borderWidth = 0.8,
borderColour = 'black',
verbose = TRUE)
{
dim1 <- dim2 <- ..level.. <- lab <- NULL
# pull in the base theme, and add on parameters if necessary
th <- basetheme(titleLabSize, subtitleLabSize, captionLabSize,
axisLabSize, xlabAngle, xlabhjust, xlabvjust,
ylabAngle, ylabhjust, ylabvjust, legendPosition, legendLabSize) +
theme(legend.key.height = unit(legendKeyHeight, 'cm'))
if (is(indata, 'SingleCellExperiment')) {
if (verbose) message('--input data class is SingleCellExperiment')
plotobj <- as.data.frame(reducedDim(indata, reducedDim)[,dimColnames])
} else {
if (verbose) message('--input data class is ', class(indata))
plotobj <- as.data.frame(indata[,dimColnames])
}
colnames(plotobj) <- c('dim1','dim2')
# set plot labels (e.g. cell names)
if (!is.null(celllab)) {
plotobj$lab <- rownames(plotobj)
plotobj <- as.data.frame(plotobj, stringsAsFactors = FALSE)
names.new <- rep(NA, length(plotobj$lab))
indices <- which(plotobj$lab %in% celllab)
names.new[indices] <- plotobj$lab[indices]
plotobj$lab <- names.new
}
if (is.null(xlim)) {
xlim <- c(
min(plotobj[,'dim1'], na.rm = TRUE) - 2,
max(plotobj[,'dim1'], na.rm = TRUE) + 2)
}
if (is.null(ylim)) {
ylim <- c(
min(plotobj[,'dim2'], na.rm = TRUE) - 2,
max(plotobj[,'dim2'], na.rm = TRUE) + 2)
}
# initialise the plot object
plot <- ggplot(plotobj, aes(dim1, dim2)) + th +
stat_density2d(aes(alpha = ..level.., fill = ..level..),
size = 1, bins = bins, geom = 'polygon') +
scale_fill_gradient(low = lowcol, high = highcol, name = 'Density') +
scale_alpha(range = c(alpha[1], alpha[2]), guide = FALSE) +
geom_density2d(colour = contour)
plot <- plot + guides(colour = guide_legend(
override.aes = list(size = legendIconSize)))
# add elements to the plot for xy labeling and axis limits
plot <- plot + xlab(xlab) + ylab(ylab)
if (!is.null(xlim)) {
plot <- plot + xlim(xlim[1], xlim[2])
}
if (!is.null(ylim)) {
plot <- plot + ylim(ylim[1], ylim[2])
}
# add elements to the plot for title, subtitle, caption
plot <- plot + labs(title = title,
subtitle = subtitle, caption = caption)
# add elements to the plot for vlines and hlines
if (!is.null(vline)) {
plot <- plot + geom_vline(xintercept = vline,
linetype = vlineType,
colour = vlineCol,
size = vlineWidth)
}
if (!is.null(hline)) {
plot <- plot + geom_hline(yintercept = hline,
linetype = hlineType,
colour = hlineCol,
size = hlineWidth)
}
# border around plot
plot <- plot +
theme(panel.border = element_rect(
colour = borderColour,
fill = NA,
size = borderWidth))
# gridlines
if (gridlines.major) {
plot <- plot + theme(panel.grid.major = element_line())
} else {
plot <- plot + theme(panel.grid.major = element_blank())
}
if (gridlines.minor) {
plot <- plot + theme(panel.grid.minor = element_line())
} else {
plot <- plot + theme(panel.grid.minor = element_blank())
}
if (!is.null(celllab)) {
if (drawConnectors && is.null(celllab)) {
plot <- plot + geom_text_repel(
data = plotobj,
aes(label = lab),
size = labSize,
segment.color = colConnectors,
segment.size = widthConnectors,
hjust = labhjust,
vjust = labvjust)
} else if (drawConnectors && !is.null(celllab)) {
plot <- plot + geom_text_repel(
data=subset(plotobj,
!is.na(plotobj[,'lab'])),
aes(label = lab),
size = labSize,
segment.color = colConnectors,
segment.size = widthConnectors,
hjust = labhjust,
vjust = labvjust)
} else if (!drawConnectors && !is.null(celllab)) {
plot <- plot + geom_text(
data=subset(plotobj,
!is.na(plotobj[,'lab'])),
aes(label = lab),
size = labSize,
check_overlap = TRUE,
hjust = labhjust,
vjust = labvjust)
} else if (!drawConnectors && is.null(celllab)) {
plot <- plot + geom_text(
data = plotobj,
aes(label = lab),
size = labSize,
check_overlap = TRUE,
hjust = labhjust,
vjust = labvjust)
}
}
return(plot)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.