Last data update: 2014.03.03

R: Print ggpair object
print.ggmatrixR Documentation

Print ggpair object

Description

Specialized method to print the ggpair object-

Usage

## S3 method for class 'ggmatrix'
print(x, leftWidthProportion = 0.2,
  bottomHeightProportion = 0.1, spacingProportion = 0.03,
  gridNewPage = TRUE, ...)

Arguments

x

ggpair object to be plotted

leftWidthProportion

proportion of a plot area devoted to left axis labels

bottomHeightProportion

proportion of a plot area devoted to bottom axis labels

spacingProportion

proportion of a plot area devoted to the space between plots

gridNewPage

boolean that determines if a grid.newpage() should be executed before printing. Defaults to TRUE

...

ignored

Author(s)

Barret Schloerke schloerke@gmail.com

Examples

 data(tips, package = "reshape")
 pMat <- ggpairs(tips, c(1,3,2), mapping = ggplot2::aes_string(color = "sex"))
 pMat # calls print(pMat), which calls print.ggmatrix(pMat)

 ## defaults; (prints strips on top and right edges of matrix)
 # print(pMat, left = 0.2, spacing = 0.03, bottom = 0.1)

 ## give the left axis labels area a proportion of 3 plot size
 # print(pMat, leftWidthProportion = 3)

 ## give the bottom axis labels area a proportion of 1 plot size
 # print(pMat, bottomHeightProportion = 1)

 ## give the spacing between plots a proportion of 1 plot size
 # print(pMat, spacing = 1)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(GGally)
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/GGally/print.ggmatrix.Rd_%03d_medium.png", width=480, height=480)
> ### Name: print.ggmatrix
> ### Title: Print ggpair object
> ### Aliases: print.ggmatrix
> 
> ### ** Examples
> 
>  data(tips, package = "reshape")
>  pMat <- ggpairs(tips, c(1,3,2), mapping = ggplot2::aes_string(color = "sex"))
>  pMat # calls print(pMat), which calls print.ggmatrix(pMat)
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
> 
>  ## defaults; (prints strips on top and right edges of matrix)
>  # print(pMat, left = 0.2, spacing = 0.03, bottom = 0.1)
> 
>  ## give the left axis labels area a proportion of 3 plot size
>  # print(pMat, leftWidthProportion = 3)
> 
>  ## give the bottom axis labels area a proportion of 1 plot size
>  # print(pMat, bottomHeightProportion = 1)
> 
>  ## give the spacing between plots a proportion of 1 plot size
>  # print(pMat, spacing = 1)
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>