Skip to content

Commit c42b43a

Browse files
committed
render index.md
1 parent 514ccdd commit c42b43a

File tree

1 file changed

+202
-0
lines changed

1 file changed

+202
-0
lines changed

index.md

+202
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
2+
# ggalign <a href="https://yunuuuu.github.io/ggalign/"><img src="man/figures/logo.png" align="right" height="139" alt="ggalign website" /></a>
3+
4+
<!-- badges: start -->
5+
6+
[![R-CMD-check](https://github.com/Yunuuuu/ggalign/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Yunuuuu/ggalign/actions/workflows/R-CMD-check.yaml)
7+
[![Codecov test
8+
coverage](https://codecov.io/gh/Yunuuuu/ggalign/branch/main/graph/badge.svg)](https://app.codecov.io/gh/Yunuuuu/ggalign?branch=main)
9+
[![CRAN
10+
status](https://www.r-pkg.org/badges/version/ggalign)](https://CRAN.R-project.org/package=ggalign)
11+
[![Project Status: Active - The project has reached a stable, usable
12+
state and is being actively
13+
developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
14+
[![](https://cranlogs.r-pkg.org/badges/ggalign)](https://cran.r-project.org/package=ggalign)
15+
[![DOI](https://zenodo.org/badge/828195668.svg)](https://doi.org/10.5281/zenodo.14825328)
16+
<!-- badges: end -->
17+
18+
The `ggalign` package extends `ggplot2` to simplify the creation of
19+
complex, multi-plot visualizations. Built on the familiar grammar of
20+
graphics, it provides intuitive tools to align and organize plots—such
21+
as heatmaps, dendrograms, or circular layouts—while handling intricate
22+
relationships in multi-omics data, like genomics or microbiomes. Whether
23+
you need to stack plots, arrange them around a central figure, or link
24+
diverse datasets (e.g., genes to pathways), `ggalign` offers flexibility
25+
and precision with minimal effort.
26+
27+
## Why use `ggalign`?
28+
29+
`ggalign` focuses on aligning observations across multiple plots. If
30+
you’ve ever struggled with aligning plots with self-contained ordering
31+
(like dendrogram), or applying consistent grouping or ordering across
32+
multiple plots (e.g., with k-means clustering), `ggalign` is designed to
33+
make this easier. The package integrates seamlessly with ggplot2,
34+
providing the flexibility to use its geoms, scales, and other components
35+
for complex visualizations.
36+
37+
## Installation
38+
39+
You can install `ggalign` from `CRAN` using:
40+
41+
``` r
42+
install.packages("ggalign")
43+
```
44+
45+
Alternatively, install the development version from
46+
[r-universe](https://yunuuuu.r-universe.dev/ggalign) with:
47+
48+
``` r
49+
install.packages("ggalign",
50+
repos = c("https://yunuuuu.r-universe.dev", "https://cloud.r-project.org")
51+
)
52+
```
53+
54+
or from [GitHub](https://github.com/Yunuuuu/ggalign) with:
55+
56+
``` r
57+
# install.packages("remotes")
58+
remotes::install_github("Yunuuuu/ggalign")
59+
```
60+
61+
## Learning ggalign
62+
63+
1. The complete tutorial is available at:
64+
<https://yunuuuu.github.io/ggalign-book/>
65+
66+
2. For the full reference documentation, visit:
67+
<https://yunuuuu.github.io/ggalign/>
68+
69+
## Examples
70+
71+
![](man/figures/overview.png)
72+
73+
## Compare with other similar tools
74+
75+
<table class="table"><thead>
76+
<tr>
77+
<th colspan="2"></th>
78+
<th> <code>ggalign</code> </th>
79+
<th> <code>marsilea</code> </th>
80+
<th> <code>ComplexHeatmap</code> </th>
81+
</tr></thead>
82+
<tbody>
83+
<tr>
84+
<td colspan="2"> <strong>Language</strong> </td>
85+
<td>R</td>
86+
<td>Python</td>
87+
<td>R</td>
88+
</tr>
89+
<tr>
90+
<td colspan="2"> <strong>User Interface</strong> </td>
91+
<td>Declarative</td>
92+
<td>Declarative</td>
93+
<td>Functional</td>
94+
</tr>
95+
<tr>
96+
<td colspan="2"> <strong>Plot System</strong> </td>
97+
<td>ggplot2 (Advanced plot system built on grid system)</td>
98+
<td>Matplotlib</td>
99+
<td>grid</td>
100+
</tr>
101+
<tr>
102+
<td colspan="2"> <strong>Focus</strong> </td>
103+
<td>Composable Visualization</td>
104+
<td>Composable Visualization</td>
105+
<td>Heatmap</td>
106+
</tr>
107+
<tr>
108+
<td colspan="2"> <strong>StackLayout</strong> </td>
109+
<td>✅</td>
110+
<td>✅</td>
111+
<td>✅</td>
112+
</tr>
113+
<tr>
114+
<td colspan="2"> <strong>QuadLayout</strong> </td>
115+
<td>✅</td>
116+
<td>✅</td>
117+
<td>Heatmap Only (discrete variables)</td>
118+
</tr>
119+
<tr>
120+
<td colspan="2"> <strong>CircleLayout</strong> </td>
121+
<td>✅</td>
122+
<td>❌</td>
123+
<td>❌</td>
124+
</tr>
125+
<tr>
126+
<td rowspan="4"> <strong>Relationship</strong> </td>
127+
<td> <strong>One-to-One</strong> </td>
128+
<td>✅</td>
129+
<td>✅</td>
130+
<td>✅</td>
131+
</tr>
132+
<tr>
133+
<td> <strong>One-to-Many</strong>/<strong>Many-to-One</strong> </td>
134+
<td>✅</td>
135+
<td>❌</td>
136+
<td>❌</td>
137+
</tr>
138+
<tr>
139+
<td> <strong>Many-to-Many</strong> </td>
140+
<td>✅</td>
141+
<td>❌</td>
142+
<td>❌</td>
143+
</tr>
144+
<tr>
145+
<td> <strong>Crosswise</strong> </td>
146+
<td>✅</td>
147+
<td>❌</td>
148+
<td>❌</td>
149+
</tr>
150+
<tr>
151+
<td colspan="2"> <strong>Annotate observations</strong> </td>
152+
<td>✅</td>
153+
<td>❌</td>
154+
<td>✅</td>
155+
</tr>
156+
<tr>
157+
<td colspan="2"> <strong>Fully Compatible with ggplot2</strong> </td>
158+
<td>✅</td>
159+
<td>❌</td>
160+
<td>❌</td>
161+
</tr>
162+
</tbody></table>
163+
164+
## Comparison of specifications with other similar tools
165+
166+
| Specification | `ggalign` | `marsilea` | `ComplexHeatmap` |
167+
|----------------------------------------------|-------------------------------------------------------|---------------|-------------------------------------------------------|
168+
| **Reorder observations** ||| Heatmap Only |
169+
| **Group observations into different panels** ||| Heatmap Only |
170+
| **Clustering algorithm** | Kmeans,Hierarchical Clustering and arbitary algorithm || Kmeans,Hierarchical Clustering and arbitary algorithm |
171+
| **Legends Creation** | Automatic | Automatic | Limited automatic, requires manual add |
172+
| **Legends Position** | Anywhere, can be controlled for a single plot | Anywhere | Four sides, can only be placed on one side at a time |
173+
| **Dendrogram** | Tree from both `hclust` or `ape` | `hclust` only | `hclust` only |
174+
| **Tanglegram** ||||
175+
| **3D Heatmap** ||||
176+
| **Oncoplot** ||||
177+
| **UpSet plot** ||||
178+
179+
## Altmetric scores
180+
181+
<script type="text/javascript" src="https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js"></script>
182+
183+
<div class="altmetric-embed" data-badge-type="medium-donut"
184+
data-badge-popover="right" data-altmetric-id="173956809">
185+
186+
</div>
187+
188+
## Acknowledgements
189+
190+
I would like to express my sincere gratitude to the contributors of the
191+
`ggplot2` project for providing a powerful and flexible framework for
192+
data visualization in R. Their work laid the foundation for the
193+
functionality and design of this package. I would also like to thank the
194+
`patchwork` project, from which the core coding for the plot composer
195+
was adapted. The `patchwork` library provided a useful mechanism for
196+
combining and aligning plots, which was modified to suit the needs of
197+
this package. Without the contributions of these open-source projects,
198+
this package would not have been possible.
199+
200+
Additionally, I would like to extend my heartfelt thanks to
201+
`@teunbrand`, who has fulfilled my numerous feature requests, and
202+
assisted with the integration of new functions into ggplot2.

0 commit comments

Comments
 (0)