plot_var_pairs | R Documentation |
plot_*
function.Easily generate a matrix of ggplot2 graphs for all pairwise
combinations of all (or a subset of) variables in a data frame using a
class-appropriate geometry via other elucidate plot_*
functions with a
restricted set of customization options and some modified defaults. The
collection of generated graphs will be combined into a single lattice-style
matrix figure with either the patchwork package or trelliscopejs package.
See "Arguments" section for details and
this
blog post for an introduction to ggplot2. To obtain a plot of a single
variable or vector, use plot_var
instead. To obtain
univariate plots of all variables, or plots of all variables against a
specific secondary variable, use plot_var_all
instead.
plot_var_pairs( data, group_var = NULL, cols = NULL, title = ggplot2::waiver(), caption = ggplot2::waiver(), fill = "blue2", colour = "black", palette = c("plasma", "C", "magma", "A", "inferno", "B", "viridis", "D", "cividis", "E"), palette_direction = c("d2l", "l2d"), palette_begin = 0, palette_end = 0.8, alpha = 0.75, greyscale = FALSE, line_size = 1, theme = c("bw", "classic", "grey", "light", "dark", "minimal"), text_size = 14, font = c("sans", "serif", "mono"), legend_position = c("right", "left", "top", "bottom"), omit_legend = FALSE, dnorm = TRUE, violin = TRUE, var1_log10 = FALSE, var2_log10 = FALSE, point_size = 2, point_shape = c("circle", "square", "diamond", "triangle up", "triangle down"), regression_line = TRUE, regression_method = c("gam", "loess", "lm"), regression_se = TRUE, bar_position = c("dodge", "fill", "stack"), bar_width = 0.9, basic = FALSE, interactive = FALSE, trelliscope = FALSE, nrow = NULL, ncol = NULL, guides = "collect" )
data |
A data frame containing variables to be plotted against each other in pairwise/bivariate combinations. |
group_var |
Use if you want to assign a grouping variable to fill
(colour) and/or (outline) colour e.g. group_var = "grouping_variable" or
group_var = grouping_variable. Whether the grouping variable is mapped to
fill, colour, or both will depend upon which |
cols |
A character (or integer) vector of column names (or indices)
which allows you to generate pair plots only a subset of the columns in the
input data frame, where each variable combination will be assigned once
each of the |
title |
A character string to add as a title at the top of the combined multiple-panel patchwork graph or trelliscopejs display. |
caption |
Add a figure caption to the bottom of the plot using a character string. |
fill |
Fill colour to use for density plots, bar graphs, and box plots.
Ignored if a variable that has been assigned to |
colour |
Outline colour to use for density plots, bar graphs, box plots,
and scatter plots. Ignored if a variable that has been assigned to
|
palette |
If a variable is assigned to group_var, this determines which viridis colour palette to use. Options include "plasma" or "C" (default), "magma" or "A", "inferno" or "B", "viridis" or "D", and "cividis" or "E". See this link for examples. |
palette_direction |
Choose "d2l" for dark to light (default) or "l2d" for light to dark. |
palette_begin |
Value between 0 and 1 that determines where along the
full range of the chosen colour palette's spectrum to begin sampling
colours. See |
palette_end |
Value between 0 and 1 that determines where along the full
range of the chosen colour palette's spectrum to end sampling colours. See
|
alpha |
This adjusts the transparency/opacity of the main geometric objects in the generated plot, with acceptable values ranging from 0 = 100% transparent to 1 = 100% opaque. |
greyscale |
Set to TRUE if you want the plot converted to grey scale. |
line_size |
Controls the thickness of plotted lines. |
theme |
Adjusts the theme using 1 of 6 predefined "complete" theme
templates provided by ggplot2. Currently supported options are: "classic",
"bw" (the elucidate default), "grey" (the ggplot2 default), "light",
"dark", & "minimal". See |
text_size |
This controls the size of all plot text. Default = 14. |
font |
This controls the font of all plot text. Default = "sans" (Arial). Other options include "serif" (Times New Roman) and "mono" (Courier New). |
legend_position |
This allows you to modify the legend position if a
variable is assigned to |
omit_legend |
Set to TRUE if you want to remove/omit the legend(s).
Ignored if |
dnorm |
When TRUE (default), this adds a dashed line representing a
normal/Gaussian density curve to density plots, which are rendered for
plots of single numeric variables. Disabled if |
violin |
When TRUE (default), this adds violin plot outlines to box
plots, which are rendered in cases where a mixture of numeric and
categorical variables are assigned to |
var1_log10 |
If TRUE, applies a base-10 logarithmic transformation to a
numeric variable that has been assigned to |
var2_log10 |
If TRUE, applies a base-10 logarithmic transformation to a
numeric variable that has been assigned to |
point_size |
Controls the size of points used in scatter plots, which
are rendered in cases where |
point_shape |
Point shape to use in scatter plots, which
are rendered in cases where |
regression_line |
If TRUE (the default), adds a regression line to scatter
plots, which are rendered in cases where |
regression_method |
If |
regression_se |
If TRUE (the default), adds a 95% confidence envelope for the
regression line. Ignored if |
bar_position |
In bar plots, which are rendered for one or more
categorical variables, this determines how bars are arranged relative to
one another when a grouping variable is assigned to |
bar_width |
In bar plots, which are rendered for one or more categorical variables, this adjusts the width of the bars (default = 0.9). |
basic |
This is a shortcut argument that allows you to simultaneously
disable the |
interactive |
Determines whether a static ggplot object or an
interactive html plotly object is returned. Interactive/plotly mode for
multiple plots should only be used in conjunction with |
trelliscope |
If changed to TRUE, plots will be combined into an
interactive trelliscope display rather than a static patchwork graph grid.
See |
nrow |
This controls the number of rows to use when arranging plots in
the combined patchwork or trelliscopejs display. Modifying the arrangement
of the plot matrix this way is not recommended when |
ncol |
This controls the number of columns to use when arranging plots
in the combined patchwork or trelliscopejs display. Modifying the arrangement
of the plot matrix this way is not recommended when |
guides |
Controls the pooling of |
A static "patchwork" or dynamic "trelliscope" multi-panel graphical
display matrix of ggplot2 or plotly graphs depending upon the values of the
trelliscope
and interactive
arguments. The type of graph (i.e.
ggplot2::geom*
layers) that is rendered in each panel will depend upon
the classes of the chosen variables, as follows:
One numeric (classes numeric/integer/date) variable (e.g. on the diagonal
of the plot matrix) will be graphed with plot_density
.
One (e.g. on the diagonal) or two (appearing off-diagonal) categorical
(classes factor/character/logical) variable(s) will be graphed with
plot_bar
.
Two numeric variables will be graphed with plot_scatter
.
A mixture of numeric and categorical variables will be graphed with
plot_box
, where the numeric variable will always be assigned
to the y-axis.
Craig P. Hutton, Craig.Hutton@gov.bc.ca
Wickham, H. (2016). ggplot2: elegant graphics for data analysis. New York, N.Y.: Springer-Verlag.
plot_density
, plot_bar
,
plot_scatter
, plot_box
, plot_var
,
plot_var_all
, wrap_plots
,
trelliscope
data(mtcars) #load the mtcars data # convert variables "cyl" to a factors mtcars$cyl <- as.factor(mtcars$cyl) # plot all pairwise combinations of variables "mpg", "hp", and "cyl" plot_var_pairs(mtcars, cols = c("mpg", "hp", "cyl")) # render basic versions of the same plots without normal density curves, # violin plots, or regression lines added. plot_var_pairs(mtcars, cols = c("mpg", "hp", "cyl"), basic = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.