Raincloud plot

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

Examples

plot_raincloud(data.frame(data = rnorm(100)), value = "data")
#> Picking joint bandwidth of 0.346
plot_raincloud( iris, value = "Sepal.Length", groups = "Species", control = plot_control(points_size = 1) )
#> Picking joint bandwidth of 0.181