Launches example plots demonstrating MAIDR's accessible visualization capabilities. Each example creates an interactive plot using `show()`.
Usage
run_example(example = NULL, type = c("ggplot2", "base_r"))Value
Invisibly returns `NULL`. Called for its side effect of displaying an interactive plot in the browser or listing available examples.
Details
Available examples include various plot types such as bar charts, histograms, scatter plots, line plots, boxplots, heatmaps, and more.
Each example script creates a plot and calls `show()` to display it in your default web browser with full MAIDR accessibility features including keyboard navigation and screen reader support.
Examples
if (interactive()) {
# List all available examples
run_example()
# Run ggplot2 bar chart example
run_example("bar")
# Run Base R histogram example
run_example("histogram", type = "base_r")
}