ggplot2 (version 0.9.2.1)

aes_auto: 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

Run this code
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)

Run the code above in your browser using DataCamp Workspace