plot_raincloud: Raincloud plot

Description Usage Arguments Value See Also Examples

View source: R/plot-raincloud.R

Description

Raincloud plot

Usage

1
2
3
4
5
6
7
plot_raincloud(
  data,
  value,
  value_label = value,
  groups = NULL,
  control = plot_control()
)

Arguments

data

Data frame

value

Character string. Name of the column in data

value_label

Character string. Label to be used. Default is value

groups

Character string. Name of the column in data. Default is NULL

control

Plotting control object returned from plot_control

Value

ggplot object

See Also

plot_raincloud_SESOI

Examples

1
2
3
4
5
6
7
plot_raincloud(data.frame(data = rnorm(100)), value = "data")
plot_raincloud(
  iris,
  value = "Sepal.Length",
  groups = "Species",
  control = plot_control(points_size = 1)
)

mladenjovanovic/bmbstats documentation built on Aug. 5, 2020, 4:20 p.m.