Fancy plotting for copulas
# S3 method for copula
ggplot(
data,
mapping = aes(),
color = "blue",
alpha = 0.7,
jitter = FALSE,
jitter.factor = 0.05,
point.size = 1,
smooth = FALSE,
smooth.method = "auto",
smooth.se = TRUE,
smooth.level = 0.95,
smooth.formula = y ~ x,
legend.position = "none",
legend.title = ggplot2::waiver(),
diag = FALSE,
lower = TRUE,
ticks = TRUE,
...,
environment = parent.frame()
)
A data.frame.
Not used.
Defaults to color = "blue"
.
Defaults to alpha = 0.7
.
If jitter=TRUE
, the values are jittered
before plotting. Defaults to jitter. = FALSE
.
How much jittering to use. Defaults to
jitter.factor = .05
.
Defaults to point.size = 1
.
Defaults to smooth = FALSE
.
Defaults to smooth.method = "auto"
and is passed
to geom_smooth
only when smooth = TRUE
.
Defaults to smooth.se = TRUE
and is used only when
smooth = TRUE
.
Defaults to smooth.level = 0.95
and is used only
when smooth = TRUE
.
A formula, defaulting to smooth.formula = y ~ x
to be passed as the formula
argument to geom_smooth
.
Passed into theme
, defaults to legend.position="none"
.
Passed into theme
. Defaults to legend.title = waiver()
.
Defaults to diag = FALSE
and panels on the diagonal are not
produced.
Defaults to lower = TRUE
and only the lower triangle is plotted.
Defaults to ticks = TRUE
and ticks and their labels are put
on the axes. Otherwise, no tick or labels are used.
Not used.
Not used.