Nothing
#'@title Plot scatter matrix
#'@description Scatter matrix using GGally::ggpairs with optional class coloring.
#'@param data data.frame
#'@param cnames column names to include
#'@param title optional title
#'@param clabel optional class label column name
#'@param colors optional vector of colors for classes
#'@return returns a ggplot2::ggplot graphic
#'@examples
#'data(iris)
#'grf <- plot_pair(iris, cnames = colnames(iris)[1:4], title = "Iris")
#'print(grf)
#'@export
plot_pair <- function(data, cnames, title = NULL, clabel = NULL, colors = NULL) {
if (!requireNamespace("GGally", quietly = TRUE)) {
stop("plot_pair requires the 'GGally' package. Install with install.packages('GGally').")
}
icol <- match(cnames, colnames(data))
icol <- icol[!is.na(icol)]
if (length(icol) == 0) {
stop("plot_pair: no valid columns in 'cnames'.")
}
if (!is.null(clabel)) {
grf <- GGally::ggpairs(data, columns = icol, ggplot2::aes(colour = data[[clabel]], alpha = 0.4)) +
ggplot2::theme_bw(base_size = 10)
if (!is.null(colors)) {
grf <- grf + ggplot2::scale_color_manual(values = colors)
}
} else {
grf <- GGally::ggpairs(data, columns = icol) + ggplot2::theme_bw(base_size = 10)
}
if (!is.null(title)) grf <- grf + ggplot2::ggtitle(title)
grf
}
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.