aes_auto {ggplot2} | R Documentation |
Automatic aesthetic mapping
aes_auto(data = NULL, ...)
data |
data.frame or names of variables |
... |
aesthetics that need to be explicitly mapped. |
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)