For now, these are just exported and renamed:
geom_expected_point
is geom_point()
geom_CI_bar
is geom_errorbar()
/ geom_linerange()
/ geom_pointrange()
/ geom_crossbar()
geom_expected_line
is geom_line()
geom_CI_ribbon
is geom_ribbon()
with alpha = 0.25
and no outline (color = NA
) - both can be overriden.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | geom_expected_point(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
...,
na.rm = FALSE,
show.legend = NA,
inherit.aes = TRUE
)
geom_CI_bar(
mapping = NULL,
data = NULL,
stat = "identity",
type = c("errorbar", "linerange", "pointrange", "crossbar"),
position = "identity",
...,
na.rm = FALSE,
orientation = NA,
show.legend = NA,
inherit.aes = TRUE
)
geom_expected_line(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
na.rm = FALSE,
orientation = NA,
show.legend = NA,
inherit.aes = TRUE,
...
)
geom_CI_ribbon(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
...,
na.rm = FALSE,
orientation = NA,
show.legend = NA,
inherit.aes = TRUE,
outline.type = "both"
)
|
mapping |
Set of aesthetic mappings created by |
data |
The data to be displayed in this layer. There are three options: If A A |
stat |
The statistical transformation to use on the data for this layer, as a string. |
position |
Position adjustment, either as a string, or the result of a call to a position adjustment function. |
... |
Other arguments passed on to |
na.rm |
If |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
type |
Which type of interval geom to use. |
orientation |
The orientation of the layer. The default ( |
outline.type |
Type of the outline of the area; |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.