mean_se: Calculate mean and standard error of the mean

View source: R/stat-summary.R

mean_seR Documentation

Calculate mean and standard error of the mean

Description

For use with stat_summary()

Usage

mean_se(x, mult = 1)

Arguments

x

numeric vector.

mult

number of multiples of standard error.

Value

A data frame with three columns:

y

The mean.

ymin

The mean minus the multiples of the standard error.

ymax

The mean plus the multiples of the standard error.

Examples

set.seed(1)
x <- rnorm(100)
mean_se(x)

tidyverse/ggplot2 documentation built on May 1, 2024, 1:12 p.m.