aes_auto {ggplot2}R Documentation

Automatic aesthetic mapping

Description

Automatic aesthetic mapping

Usage

  aes_auto(data = NULL, ...)

Arguments

data

data.frame or names of variables

...

aesthetics that need to be explicitly mapped.

Examples

df <- data.frame(x = 1, y = 1, colour = 1, label = 1, pch = 1)
aes_auto(df)
aes_auto(names(df))

df <- data.frame(xp = 1, y = 1, colour = 1, txt = 1, foo = 1)
aes_auto(df, x = xp, label = txt)
aes_auto(names(df), x = xp, label = txt)

df <- data.frame(foo = 1:3)
aes_auto(df, x = xp, y = yp)
aes_auto(df)

[Package ggplot2 version 0.9.3.1 Index]