Line ranges for hilo intervals
geom_hilo_linerange( mapping = NULL, data = NULL, stat = "identity", position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, ... )
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. |
na.rm |
If |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
... |
Other arguments passed on to |
geom_hilo_linerange()
displays the interval defined by a hilo object. The
luminance of the shaded area indicates its confidence level. The shade colour
can be controlled by the fill
aesthetic, however the luminance will be
overwritten to represent the confidence level.
geom_hilo_ribbon()
for continuous hilo intervals (ribbons)
dist <- dist_normal(1:3, 1:3) library(ggplot2) ggplot( data.frame(x = rep(1:3, 2), interval = c(hilo(dist, 80), hilo(dist, 95))) ) + geom_hilo_linerange(aes(x = x, hilo = interval))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.