pairs_plot: A pairs plot

View source: R/visualization-utils.R

pairs_plotR Documentation

A pairs plot

Description

This is a wrapper to the GGally based pairs plot of a list of variables displayed as scatterplots for pairs of continuous variables, density functions in the diagonal, and boxplots for pairs of continuous and categorical variables. Optionally, a by categorical variable can be provided.

Usage

pairs_plot(variables, data, by = NULL)

Arguments

variables

A vector of variable names

data

The data frame.

by

An optional variable, usually categorical (factor or character), by which the data are grouped and coloured.

Value

A GGally::ggpairs plot.

Examples

# A simple pairs plot
pairs_plot(variables = c("sex_dimorph", "attractive"),
data = faithfulfaces)
# A pairs plot with grouping variable
pairs_plot(variables = c("sex_dimorph", "attractive"),
by = face_sex,
data = faithfulfaces)

mark-andrews/psyntur documentation built on Nov. 18, 2024, 7:17 a.m.