plotmatrix {ggplot2}R Documentation

Code to create a scatterplot matrix (experimental)

Description

Crude experimental scatterplot matrix

Usage

plotmatrix(data, mapping=aes())

Arguments

data data frame
mapping any additional aesthetic mappings (do not use x and y)

Details

Author(s)

Hadley Wickham <h.wickham@gmail.com>

Examples

plotmatrix(mtcars)
plotmatrix(mtcars, aes(colour=factor(cyl)))
plotmatrix(mtcars) + geom_smooth(method="lm")
plotmatrix(mtcars, aes(colour=factor(cyl))) 

[Package ggplot2 version 0.5.5 Index]