All Projects β†’ thomasp85 β†’ Ggforce

thomasp85 / Ggforce

Licence: other
Accelerating ggplot2

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Ggforce

Ggcats
The geom you always wished for adding cats to ggplot2
Stars: ✭ 34 (-94.69%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Ggalt
🌎 Extra Coordinate Systems, Geoms, Statistical Transformations & Scales for 'ggplot2'
Stars: ✭ 561 (-12.34%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Hrbrthemes
πŸ” Opinionated, typographic-centric ggplot2 themes and theme components
Stars: ✭ 899 (+40.47%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Calendr
Ready to print calendars with ggplot2
Stars: ✭ 161 (-74.84%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Patchwork
The Composer of ggplots
Stars: ✭ 2,002 (+212.81%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Ggbernie
A ggplot2 geom for adding Bernie Sanders to ggplot2
Stars: ✭ 96 (-85%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Ggpointdensity
πŸ“ˆ πŸ“Š Introduces geom_pointdensity(): A Cross Between a Scatter Plot and a 2D Density Plot.
Stars: ✭ 286 (-55.31%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Gganimate
A Grammar of Animated Graphics
Stars: ✭ 1,744 (+172.5%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Econocharts
Microeconomics/macroeconomics charts in ggplot2
Stars: ✭ 161 (-74.84%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Ggsignif
Easily add significance brackets to your ggplots
Stars: ✭ 322 (-49.69%)
Mutual labels:  ggplot2, ggplot-extension, rstats
Moderndive book
Statistical Inference via Data Science: A ModernDive into R and the Tidyverse
Stars: ✭ 527 (-17.66%)
Mutual labels:  ggplot2, rstats
Upsetr
An R implementation of the UpSet set visualization technique published by Lex, Gehlenborg, et al..
Stars: ✭ 531 (-17.03%)
Mutual labels:  ggplot2, rstats
scclusteval
Single Cell Cluster Evaluation
Stars: ✭ 57 (-91.09%)
Mutual labels:  ggplot2, rstats
cusumcharter
Easier CUSUM control charts. Returns simple CUSUM statistics, CUSUMs with control limit calculations, and function to generate faceted CUSUM Control Charts
Stars: ✭ 17 (-97.34%)
Mutual labels:  ggplot2, rstats
Waffle
🍁 Make waffle (square pie) charts in R
Stars: ✭ 614 (-4.06%)
Mutual labels:  ggplot2, rstats
DataViz-Teaching
πŸ“ˆ Visualizations for DataViz Teaching
Stars: ✭ 29 (-95.47%)
Mutual labels:  ggplot2, rstats
Tidyexplain
πŸ€Ήβ€β™€ Animations of tidyverse verbs using R, the tidyverse, and gganimate
Stars: ✭ 558 (-12.81%)
Mutual labels:  ggplot2, rstats
ggdogs
The geom you always wished for adding dogs to ggplot2
Stars: ✭ 28 (-95.62%)
Mutual labels:  ggplot2, ggplot-extension
ggchicklet
πŸ€« Create Chicklet (Rounded Segmented Column) Charts
Stars: ✭ 130 (-79.69%)
Mutual labels:  ggplot2, rstats
layer
Create stacked tilted maps
Stars: ✭ 97 (-84.84%)
Mutual labels:  ggplot2, rstats

ggforce

R-CMD-check CRAN_Release_Badge CRAN_Download_Badge

Accelerating ggplot2

ggforce is a package aimed at providing missing functionality to ggplot2 through the extension system introduced with ggplot2 v2.0.0. Broadly speaking ggplot2 has been aimed primarily at explorative data visualization in order to investigate the data at hand, and less at providing utilities for composing custom plots a la D3.js. ggforce is mainly an attempt to address these β€œshortcoming” (design choices might be a better description). The goal is to provide a repository of geoms, stats, etc. that are as well documented and implemented as the official ones found in ggplot2.

Installation

You can install the released version of ggforce from CRAN with:

install.packages("ggforce")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("thomasp85/ggforce")

Features

ggforce is by design a collection of features with the only commonality being their tie to the ggplot2 API. Because of this an overview of all features would get too long for a README. The package has a website where every feature is described and justified with examples and plots. There should be a plot in the README of a visualization package though, so without further ado:

library(ggforce)
#> Loading required package: ggplot2
ggplot(iris, aes(Petal.Length, Petal.Width, colour = Species)) +
  geom_point() +
  facet_zoom(x = Species == "versicolor")

Code of Conduct

Please note that the β€˜ggforce’ project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].