scatterhist: Scatterplot with marginal histograms

Description Usage Arguments Value Author(s) References Examples

View source: R/scatterhist.R

Description

Generate a scatterplit and histograms along the x and y margins of the plot.

Usage

1
  scatterhist(x, y, xlab = "", ylab = "", ...)

Arguments

x

Data to be plotted along the x axis.

y

Data to be plotted along the x axis.

xlab

x axis label. Default is empty character.

ylab

y axis label. Default is empty character.

...

additional parameters passed to plot.

Value

Used for its side effect.

Author(s)

Ken Kleinman

References

From http://sas-and-r.blogspot.co.uk/2011/06/example-841-scatterplot-with-marginal.html

Examples

1
2
3
x <- rnorm(1:100)
y <- rnorm(1:100)
scatterhist(x,y)

lgatto/tipsntRicks documentation built on May 21, 2019, 6:08 a.m.