ggseg 2.2.1.9000 (development)
position_brain()now ignores thehemiterm (with a warning) for slice-based atlases (subcortical, cerebellar, tract). Those views are whole slices already containing both hemispheres, sohemi ~ viewno longer splits the grey-brain context into its own row away from the structures — each view now renders with its anatomical context integrated, matchingplot().New
brain_test_plot()builds a minimal, deterministic atlas plot (regions filled bylabel, no legend,theme_void()) — the canonical construction forvdiffrsnapshots across the ggsegverse, so a stray legend or title cannot creep into a snapshot and every atlas is rendered identically.Tests, examples, and vignettes now resolve region names dynamically through
ggseg.formats::atlas_regions()(and the schema-stablelabelcolumn) instead of hard-coding region strings, soR CMD checkpasses cleanly against both the released and the developmentggseg.formatsschema. Visual regression tests that usevdiffrnowskip_on_cran(), since their snapshots are geometry-specific and cannot match both schema versions.Examples, tests, and vignettes now use the new
ggseg.formatsshortregionkeys (e.g."superiorparietal","transversetemporal"). The fully spelled-out long names moved to the atlasnamescolumn, so passing a long name in aregion =position no longer matches. Any user data joined to an atlas byregionmust use the short keys.Breaking:
geom_brain()no longer colours the atlas by its built-in palette when you map nofill. A baregeom_brain(atlas = dk())now renders grey, matching how regions you supply no value for already looked.geom_brain()is for plotting your data on the brain; for a palette-coloured atlas overview useplot(atlas)(fromggseg.formats), or map it yourself withaes(fill = region)andscale_fill_brain(). This also removes the discrete palette scale thatgeom_brain()used to inject silently, so a continuous fill set inggplot()—ggplot(df, aes(fill = value)) + geom_brain(atlas = dk())— no longer errors with “Continuous value supplied to a discrete scale”.geom_brain()now combines multipledatarows that map to the same atlas region into a single value with a newfunargument (defaultmean). Long data with several rows per region — e.g. one per subject — is summarised per region instead of overplotting. Any reducing function works, sogeom_brain(atlas = dk(), fun = median)draws the median.Faceting no longer needs
dplyr::group_by(). The atlas geometry is now drawn by aStat(StatBrain), whichggplot2recomputes per panel, sofacet_wrap()/facet_grid()work directly from your data. Faceting on a variable of your own (e.g. a cohort) draws the complete brain in every panel; faceting on an atlas column (e.g.hemiorview) draws that slice in each panel, as before. The old grouped-data-frame replication in the polygon path is gone (the deprecated sf path is unchanged).New
stat_brain()and exportedStatBrainggproto — the stat-first spelling ofgeom_brain(). Both build the same layer; usestat_brain()to pairStatBrainwith a different geom.Roxygen documentation now uses markdown.
geom_brain()again warns when rows of yourdatamatch no atlas region. The default polygon renderer joins your data onto the atlas with a left join, which silently dropped unmatched rows — so a region name the atlas does not use (e.g. the short"bankssts"against the long region name) vanished without notice. It now surfaces those rows with the same “Some data not merged properly” warning the sf renderer gives (#121).Internal geom/layer consolidation: the exported
GeomBrainggproto is now the polygon geom that backs the defaultgeom_brain()(aGeomPolygonsubclass). The deprecated sf renderer’s geom was renamed to the internalGeomBrainSf. Only affects code reaching for theGeomBrainobject directly.geom_brain()now ignores (with a warning) a useraes()mapping forx,y,group, orsubgroup. These are derived from the atlas geometry —groupis the polygon feature id andsubgroupmarks holes — so mapping them previously corrupted the rendering silently (e.g.aes(group = region)collapsed each region’s separate polygon pieces).Polygon draw order now follows your data’s row order, so overlapping region outlines layer predictably. The renderer used to force alphabetical draw order, so when you mapped a variable to
colourthe outlines stacked in an order unrelated to that variable. Regions now draw in the order they appear in yourdata(later rows on top), and regions you supply no value for stay underneath in atlas order — soarrange()your data to control layering (#162).geom_brain()again mapsaes(colour = ...)andaes(linewidth = ...)to region outlines. The default outline colour (grey35) and width (0.2) were injected as fixed geom parameters, which silently overrode any mapping. They are nowdefault_aeson a dedicatedGeomPolygonsubclass, so a mapping (or an explicit constant) takes precedence while the defaults still apply when neither is given (#160).geom_brain()again respectsdataand aesthetics set in the top-levelggplot()call. The default polygon renderer built the atlas eagerly, before the plot existed, so it never saw inheriteddata/aes()and fell back to colouring by region label — e.g.ggplot(df, aes(fill = value)) + geom_brain(atlas = dk())errored with “Discrete value supplied to a continuous scale”. The atlas is now flattened and joined at plot-build time, so inherited mappings, inherited data, and faceting all work (#158).
ggseg 2.2.1
CRAN release: 2026-07-03
- The test suite now builds its
sffixtures through the public atlas accessors instead of reaching into atlas internals, so tests no longer break when the internal atlas layout changes.
ggseg 2.2.0
CRAN release: 2026-06-22
This release makes the sf package optional. ggseg now draws brains from a lightweight polygon representation by default, so it installs and plots even on systems where sf (and its GDAL / GEOS / PROJ system libraries) is unavailable — including WebAssembly and air-gapped setups.
sf is now optional
-
Your plotting code keeps working, without sf.
geom_brain(),position_brain(), andannotate_brain()produce the same figures as before, now drawn withoutsf.sfhas moved from Imports to Suggests. -
Need the full sf toolkit? To add region labels with
geom_sf_label(), layer other sf geoms, or wrangle the geometry directly, convert an atlas withas_sf_atlas()and useggplot2::geom_sf(). Seevignette("geom-sf"). - The sf-backed
geom_brain_sf()andposition_brain_sf()remain for a transition period but are deprecated and will be removed in a future release.
New plotting features
-
Zoom in on regions of interest.
position_brain(zoom = ...)crops each view onto the regions you’re highlighting so they fill the panel, with the surrounding brain reduced to a tidy grey frame. Usezoom = TRUEto follow the regions in your data, or name them explicitly;zoom_padsets the margin. Especially handy for focus atlases where only a few structures carry values. -
Readable view labels.
annotate_brain()now places labels clear of the brain instead of on top of it. The newpaddingargument (5% of the plot height by default) controls the gap. -
One annotation function.
annotate_brain()works with whicheverpositionyou gave the geom — there’s no separate labelling function to remember. -
Hide context regions.
geom_brain(context = FALSE)drops the grey, unlabelled regions and tightens the layout around the regions you’re plotting. -
Faceting. Group your data with
dplyr::group_by()andfacet_wrap()/facet_grid()draw the full atlas in every panel. -
FreeSurfer labels. Data keyed by
label(e.g."lh_bankssts") now joins to the atlas directly, in addition toregion.
Other changes
- When no
fillis mapped,geom_brain()fills regions with the atlas’s own colours, and the stray “No shared levels” warning that appeared when filtering by hemisphere or view is gone. - New
coord_brain()keeps brain proportions undistorted;geom_brain()applies it automatically, so you rarely need to add it yourself. - The deprecated
scale_brain()family keeps working with the currentggseg.formats. - The
suitcerebellar atlas is re-exported alongsidedk(),aseg(), andtracula().
ggseg 2.1.0
CRAN release: 2026-04-03
- Support cerebellar atlas type in 2D view stacking. Cerebellar atlases now use the same stacking layout as subcortical atlases in
position_brain().
ggseg 2.0.0
CRAN release: 2026-02-19
This is a major release that simplifies the package architecture by moving atlas data structures and utilities to the ggseg.formats package.
Breaking changes
ggseg()is now defunct and errors immediately. Useggplot() + geom_brain()instead.Atlas data (
dk,aseg) is no longer bundled in ggseg. Atlases are now provided by ggseg.formats and re-exported as functions:dk(),aseg(),tracula(). Code using the bare objects (e.g.,atlas = dk) must be updated toatlas = dk().The following functions have been removed and are now in ggseg.formats:
as_brain_atlas(),is_brain_atlas(),brain_atlas(),brain_regions(),brain_labels(),brain_pal(),brain_pals_info(),ggseg_atlas(),as_ggseg_atlas(),is_ggseg_atlas(),read_freesurfer_stats(),read_freesurfer_table(),read_atlas_files().scale_brain2(),scale_fill_brain2(),scale_colour_brain2(), andscale_color_brain2()are deprecated in favour ofscale_brain_manual(),scale_fill_brain_manual(),scale_colour_brain_manual(), andscale_color_brain_manual().scale_brain(),scale_fill_brain(),scale_colour_brain(), andscale_color_brain()are deprecated. Atlas palettes are now applied automatically bygeom_brain().The
sideargument ingeom_brain()andposition_brain()has been renamed toview.
New features
New
annotate_brain()function adds view labels (e.g., “left lateral”) to brain plots, respecting the layout fromposition_brain().New
scale_brain_manual()family for applying custom named colour palettes to brain plots.position_brain()gainsnrow,ncol, andviewsarguments for grid-based layout control of subcortical and tract atlases.adapt_scales()now accepts atlas objects directly (not just pre-converted coordinate data frames), and handles"tract"atlas types alongside subcortical.geom_brain()now automatically applies the atlas colour palette when nofillaesthetic is mapped.
Improvements
Messaging uses cli for all user-facing output (
brain_join()warnings and info messages).Rewrote and reorganised all vignettes with updated examples and renamed files for cleaner URLs.
Added tracula (white matter tract) atlas as a re-export from ggseg.formats.
Improved documentation throughout with updated roxygen2 docs.
ggseg 1.6
ggseg 1.6.7
- Fixed testthat issues with latest version of testthat
- Fixed vignette build issues on CRAN
- removed sf minimum version requirement
ggseg 1.6.5
- Bump version to 1.6.5
- rm freesurfer dep
- rm old remnants
- update readme img
- switch cerebellum labels for wm, gm, fix #80
- fix aseg labels to original, fix #78
- add vis as categorical. fix #76
- change aseg data class , fix #56
- bump version, small CRAN fixes
- add sysreq
- fix axial to coronal in vignette
- change axial to coronal in aseg data
- re-add ggplot2 depends
1.6.4
- Added options
hemiandsideto geom - improved
position_brain()to accept character vector, and also support subcortical atlases - Altered axial to coronal in aseg atlas
ggseg 1.6.3
- removed function to display ggseg palettes
- preparations for CRAN submission
- added examples to more functions
- updated links
ggseg 1.6.02
- bug fixes in atlas objects and method internals
- tests in vdiffr
- vctrs class for polygon ggseg data
ggseg 1.6.02
- No longer depends on ggplot2, but imports it.
- as is advised practice
- users must explicitly load ggplot2 to access further ggplot2 functions
ggseg 1.6.00
New large update, many new features. Of particular note is the introduction of the brain sf geom, which improved speed, and adaptability of the plots.
-
ggseg()will stay for a while, but is superseded by a simple features geom -
geom_brainintroduced as a new function to plot the atlas data- an sf geom provides a lot of new features to the package
- more control over display of the slices through
position_brain() - improved capabilities for atlases with regions that have holes
- new atlas class
brain_atlaswhich contains simple features data - new functions to allow compatibility between sf and polygon data
- utility functions to use on the atlas data for easy access to information
-
plot()functions for ggseg_atlas and brain_atlas classes for a quick look at atlases -
brain_regionsfunctions to easily extract the unique names of regions for an atlas - improved
printmethod for atlases classes ggseg_atlas and brain_atlas
-
ggseg 1.5.4
- dkt renamed to dk
- the dkt (Desikan-Killiany-Tourville) atlas is not yet available
- atlas columns
arearenamed toregion- to avoid confusion with the calculation of cortical/surface area
- dk atlas region name “medial orbito frontal” changed to “medial orbitofrontal”
ggseg 1.5
Changed atlas.info to function
atlas_info()Changed brain.pal to function
brain_pal()Changed atlas.info to function
atlas_info()Reduced code necessary for
brain_pals_infoSimplified
display_brain_pal()Moved palettes of ggsegExtra atlases to ggsegExtra package
Added a
NEWS.mdfile to track changes to the package.Added compatibility with
groupeddata.framesReduced internal atlases, to improve CRAN compatibility
Added function to install extra atlases from github easily
Changes vignettes to comply with new functionality
