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.
See also
show() for displaying plots, save_html() for saving to file
Examples
# List all available examples
run_example()
#> Available MAIDR examples:
#> ggplot2 examples:
#> - bar
#> - boxplot
#> - candlestick
#> - candlestick_with_ma_volume
#> - dodged_bar
#> - faceted
#> - gantt
#> - heatmap
#> - histogram
#> - line
#> - multiline
#> - patchwork
#> - pie
#> - roc
#> - scatter
#> - smooth
#> - stacked_bar
#> - step
#> - violin
#>
#> base_r examples:
#> - bar
#> - boxplot
#> - dodged_bar
#> - faceted_point
#> - heatmap
#> - histogram
#> - line
#> - multiline
#> - pie
#> - scatter
#> - smooth
#> - stacked_bar
#> - step
#>
#> Usage:
#> run_example("bar") # Run ggplot2 bar chart
#> run_example("histogram", "base_r") # Run Base R histogram
if (interactive()) {
# Run ggplot2 bar chart example
run_example("bar")
# Run Base R histogram example
run_example("histogram", type = "base_r")
}