-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.qmd
More file actions
68 lines (50 loc) · 1.99 KB
/
index.qmd
File metadata and controls
68 lines (50 loc) · 1.99 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
toc: false
page-layout: full
include-after-body:
- text: |
<script type="module">
import { getCorePackages, getAtlasPackages } from './js/api.js';
import { renderCorePackages } from './js/render.js';
const coreContainer = document.getElementById('core-packages-grid');
const atlasCount = document.getElementById('atlas-count');
getCorePackages().then(pkgs => renderCorePackages(pkgs, coreContainer));
getAtlasPackages().then(pkgs => { atlasCount.textContent = pkgs.length; });
</script>
---
::: {.hero-section}
{.hero-logo .logo-light}
{.hero-logo .logo-dark}
[Gross Geometry Brain Segmentation Universe for R]{.tagline}
[Get Started](/docs/){.btn .btn-primary}
:::
::: {.callout-warning}
## Heads up — things may be temporarily out of sync
We are rolling out a set of new features and infrastructure changes for ggsegverse.
During this transition some packages and documentation may be briefly out of sync with each other.
We are working to get everything aligned as quickly as possible — thanks for your patience!
:::
## Quick Install
```r
# Install from R-universe
install.packages(
c("ggseg", "ggseg3d", "ggsegExtra"),
repos = c(
"https://ggsegverse.r-universe.dev",
"https://cloud.r-project.org"
)
)
```
## Core Packages {.section-header}
The ggsegverse provides tools for visualizing brain atlas data in R.
Built on top of ggplot2 and plotly.
::: {#core-packages-grid .package-grid}
Loading packages...
:::
## Atlas Packages
The ggsegverse ecosystem includes []{#atlas-count} atlas packages providing data for different brain parcellations.
[View All Packages](/ecosystem/){.btn-gradient}
## Community
Join the discussion and get help from the community.
- [GitHub Discussions](https://github.com/orgs/ggsegverse/discussions) - Ask questions and share ideas
- [GitHub Issues](https://github.com/ggsegverse/ggseg/issues) - Report bugs and request features