GGally (version 1.3.2)

ggmatrix_gtable: Print ggmatrix object

Description

Specialized method to print the ggmatrix object-

Usage

ggmatrix_gtable(pm, ..., progress = interactive() && (pm$ncol * pm$nrow) > 15,
  progress_format = " plot: [:plot_i,:plot_j] [:bar]:percent est::eta ")

Arguments

pm

ggmatrix object to be plotted

...

ignored

progress

boolean to determine if a progress bar should be displayed. This defaults to interactive sessions only

progress_format

string supplied directly to progress::progress_bar(format = progress_format). Defaults to display the plot number, progress bar, percent complete, and estimated time to finish.

Examples

Run this code
# NOT RUN {
data(tips, package = "reshape")
pm <- ggpairs(tips, c(1,3,2), mapping = ggplot2::aes_string(color = "sex"))
ggmatrix_gtable(pm)
# }

Run the code above in your browser using DataCamp Workspace