autoplot.density {ggfortify} | R Documentation |
Autoplot stats::density
Description
Autoplot stats::density
Usage
## S3 method for class 'density'
autoplot(
object,
p = NULL,
colour = "#000000",
linetype = NULL,
fill = NULL,
alpha = NULL,
xlim = c(NA, NA),
ylim = c(NA, NA),
log = "",
main = NULL,
xlab = NULL,
ylab = NULL,
asp = NULL,
...
)
Arguments
object |
|
p |
|
colour |
Line colour |
linetype |
Line type |
fill |
Fill colour |
alpha |
Alpha |
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 |
... |
other arguments passed to PDC/CDF func |
Value
ggplot
Examples
autoplot(stats::density(stats::rnorm(1:50)))
autoplot(stats::density(stats::rnorm(1:50)), fill = 'blue')
[Package ggfortify version 0.4.17 Index]