plot_design | R Documentation |
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 class 'design'
plot(x, ...)
## S3 method for class '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(design)
: Plotting from a faux design list
plot(faux)
: 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)
data <- sim_design(within, between, plot = FALSE)
plot_design(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.