Plots the specified within and between design. See vignette("plots", package = "faux")
for examples and details.
plot_design(x, ..., geoms = NULL, palette = "Dark2", labeller = "label_value") # S3 method for design plot(x, ...) # S3 method for faux plot(x, ...)
x | A list of design parameters created by check_design() or a data tbl (in long format) |
---|---|
... | A list of factor names to determine visualisation (see vignette) in the order color, x, facet row(s), facet col(s) |
geoms | A list of ggplot2 geoms to display, defaults to "pointrangeSD" (mean ± 1SD) for designs and c("violin", "box") for data, options are: pointrangeSD, pointrangeSE, violin, box, jitter |
palette | A brewer palette, defaults to "Dark2" (see ggplot2::scale_colour_brewer) |
labeller | How to label the facets (see ggplot2::facet_grid). "label_value" is used by default. |
plot
plot
: Plotting from a faux design list
plot
: Plotting from a faux data table
within <- list(time = c("day", "night")) between <- list(pet = c("dog", "cat")) des <- check_design(within, between, plot = FALSE) plot_design(des)