ggalign | R Documentation |
ggalign()
is similar to ggplot
in that it initializes a ggplot
data and
mapping
. ggalign()
allowing you to provide data in various formats,
including matrices, data frames, or simple vectors. By default, it will
inherit from the layout. If a function, it will apply with the layout matrix.
ggalign()
focuses on integrating plots into a layout by aligning the axes.
ggalign(
data = waiver(),
mapping = aes(),
...,
size = NULL,
no_axes = NULL,
active = NULL
)
ggalign
initializes a ggplot object. The underlying data is created using
fortify_data_frame()
. Please refer to it for more details.
When aligning discrete variables, ggalign()
always applies a default
mapping for the axis of the data index in the layout. Specifically:
aes(y = .data$.y)
is used for the horizontal stack_layout()
(including
left and right annotations).
aes(x = .data$.x)
is used for the vertical stack_layout()
(including
top and bottom annotations) and circle_layout()
.
The following columns will be added to the data frame to align discrete variables:
.panel
: The panel for the aligned axis. Refers to the x-axis
for
vertical stack_layout()
(including top and bottom annotations), and the
y-axis
for horizontal stack_layout()
(including left and right
annotations).
.names
(vec_names()
) and .index
(vec_size()
/NROW()
): Character names (if
available) and the integer index of the original data.
.x
/.y
and .discrete_x
/.discrete_y
: Integer indices for x
/y
coordinates, and a factor of the data labels (only applicable when names
exist).
It is recommended to use .x
/.y
, or .discrete_x
/.discrete_y
as the
x
/y
mapping.
If the data inherits from quad_layout()
/ggheatmap()
, additional
columns will be added:
.extra_panel
: Provides the panel information for the column (left or
right annotation) or row (top or bottom annotation).
.extra_index
: The index information for the column (left or right
annotation) or row (top or bottom annotation).
It is important to note that we consider rows as observations, meaning
vec_size(data)
/NROW(data)
must match the number of observations along the
axis used for alignment (x-axis for a vertical stack layout, y-axis for a
horizontal stack layout).
ggheatmap(matrix(rnorm(81), nrow = 9)) +
anno_top() +
ggalign() +
geom_point(aes(y = value))
ggheatmap(matrix(rnorm(81), nrow = 9)) +
anno_top(size = 0.5) +
align_dendro(k = 3L) +
ggalign(data = NULL, size = 0.2) +
geom_tile(aes(y = 1L, fill = .panel))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.