ggstatsplot (version 0.0.9)

subtitle_t_bayes: Making text subtitle for the bayesian t-test.

Description

Making text subtitle for the bayesian t-test.

Usage

subtitle_t_bayes(data, x, y, bf.prior = 0.707, paired = FALSE, k = 2,
  ...)

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.

bf.prior

A number between 0.5 and 2 (default 0.707), the prior width to use in calculating Bayes factors.

paired

a logical indicating whether you want a paired t-test.

k

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

...

Additional arguments.

Examples

Run this code
# NOT RUN {
# for reproducibility
set.seed(123)

# between-subjects design

subtitle_t_bayes(
  data = mtcars,
  x = am,
  y = wt,
  paired = FALSE
)

# within-subjects design

subtitle_t_bayes(
  data = dplyr::filter(
    ggstatsplot::intent_morality,
    condition %in% c("accidental", "attempted"),
    harm == "Poisoning"
  ),
  x = condition,
  y = rating,
  paired = TRUE
)
# }

Run the code above in your browser using DataCamp Workspace