Make ggplot interactive
Horizontal versions of ggplot2 geoms
Extra coordinate systems, geoms & stats
Accelarating ggplot2
Repel overlapping text labels
Plot graph-like data structures
Miscellaneous extensions to ggplot2
Network visualizations in ggplot2
Marginal density plots or histograms
Create easy animations with ggplot2
Interactive ROC plots
ggplot themes and scales
Extensions for radiation spectra
Geoms to plot networks with ggplot2
ggplot2 tech themes, scales, and geoms
radar charts with ggplot2
Time series visualisations
A phylogenetic tree viewer
Seasonal adjustment on the fly
https://cran.rstudio.com/web/packages/ggspectra/
ggspectra extends ggplot2 with stats, geoms and annotations suitable for light spectra. It also defines ggplot() and plot() methods specialized for the classes defined in package photobiology for storing different types of spectral data.
# Example from https://cran.rstudio.com/web/packages/ggspectra/vignettes/user-guide.html
library(ggplot2)
library(photobiology)
library(photobiologyWavebands)
library(ggspectra)
# We bind two spectra, to later on demonstrate grouping.
two_suns.spct <- rbindspct(list(sun1 = sun.spct, sun2 = sun.spct * 2))
# We change the default theme.
theme_set(theme_bw())
# ggplot() methods for spectra
ggplot(sun.spct) + geom_line()
# It is possible to the defaults by means of + and aes() as shown below.
ggplot(two_suns.spct) + aes(color = spct.idx) + geom_line()
# Several ggplot stats are defined by this package, for example:
ggplot(sun.spct) + geom_line() +
stat_peaks(shape = 21) + scale_fill_identity()