post_autoplot | R Documentation |
ggplot2::qplot
Post process for fortify. Based on ggplot2::qplot
post_autoplot(
p,
xlim = c(NA, NA),
ylim = c(NA, NA),
log = "",
main = NULL,
xlab = NULL,
ylab = NULL,
asp = NULL
)
p |
|
xlim |
limits for x axis |
ylim |
limits for y axis |
log |
which variables to log transform ("x", "y", or "xy") |
main |
character vector or expression for plot title |
xlab |
character vector or expression for x axis label |
ylab |
character vector or expression for y axis label |
asp |
the y/x aspect ratio |
data.frame
p <- qplot(Petal.Length, Petal.Width, data = iris)
ggfortify:::post_autoplot(p, xlim = c(1, 5), ylim = c(1, 5), log = 'xy', main = 'title',
xlab = 'x', ylab = 'y', asp = 1.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.