View source: R/geom_glyph_ribbon.R
add_glyph_boxes | R Documentation |
This function introduces a custom layer to a ggplot, employing 'glyph boxes' to visually represent individual glyph. Users can specify various aesthetics including alpha, height, width, color, line type, and fill to customize the appearance.
add_glyph_boxes(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
x_major = NULL,
y_major = NULL,
height = "default",
width = "default",
fill = "white",
linewidth = 0.1,
inherit.aes = TRUE,
show.legend = NA,
...
)
mapping |
Set of aesthetic mappings created by |
data |
The data to be displayed in this layer. If |
stat |
The statistical transformation to use on the data for this layer.
When using a
|
position |
A position adjustment to use on the data for this layer. This
can be used in various ways, including to prevent overplotting and
improving the display. The
|
x_major , y_major |
Aesthetics to map plot coordinates for major and minor glyph components. |
height |
The height of each glyph. The 'default' is calculated using the ratio (1:1.618) relative to the 'width', to maintain a consistent aspect ratio. |
width |
The width of each glyph. The 'default' is set to the smallest distance between two consecutive coordinates, converted from meters to degrees of latitude using the Haversine method. |
fill |
The color used to fill the glyph box. |
linewidth |
The thickness of the glyph box. |
inherit.aes |
If |
show.legend |
logical. Should this layer be included in the legends?
|
... |
Additional arguments passed on to function. |
A layer object that can be added to a ggplot.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.