ggstatsplot (version 0.1.2)

mean_labeller: Create a dataframe with mean per group and a formatted label for display in ggbetweenstats plot.

Description

Create a dataframe with mean per group and a formatted label for display in ggbetweenstats plot.

Usage

mean_labeller(data, x, y, mean.ci = FALSE, k = 3L, ...)

Arguments

data

A dataframe (or a tibble) from which variables specified are to be taken. A matrix or tables will not be accepted.

x

The grouping variable from the dataframe data.

y

The response (a.k.a. outcome or dependent) variable from the dataframe data.

mean.ci

Logical that decides whether 95% confidence interval for mean is to be displayed (Default: FALSE).

k

Number of digits after decimal point (should be an integer) (Default: k = 2).

...

Currently ignored.

Examples

Run this code
# NOT RUN {
ggstatsplot:::mean_labeller(
  data = ggplot2::msleep,
  x = vore,
  y = brainwt,
  mean.ci = TRUE,
  k = 3
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace