plot_corr: Generates correlation plot with confidence bars

View source: R/plot_corr.R

plot_corrR Documentation

Generates correlation plot with confidence bars

Description

The plot_corr function takes two arguments, .data, a data.frame object, and var, a variable string within the data.frame.

Usage

plot_corr(.data, var)

Arguments

.data

data.frame; a data.frame with named columns

var

string; a single, quoted variable name

Examples

x <- data.frame(
  col_a = rnorm(100, 10, 2),
  col_b = rnorm(100, 25, 5),
  col_c = runif(100, 10, 25),
  col_d = seq(1, 200, 2)
)
plot_corr(.data = x, var = "col_a")

mike-decarlo/caser documentation built on March 14, 2023, 9:54 a.m.