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
|
# [GGally](http://ggobi.github.io/ggally/): Extension to [ggplot2](https://ggplot2.tidyverse.org/)
<!-- badges: start -->
[](https://github.com/ggobi/ggally/actions)
<!-- [](https://codecov.io/github/ggobi/ggally?branch=master) -->
[](https://cran.r-project.org/package=GGally)
[](https://cran.r-project.org/package=GGally)
[](https://zenodo.org/badge/latestdoi/22529/ggobi/ggally)
[](https://community.rstudio.com/tags/c/general/17/ggally)
[](https://github.com/ggobi/ggally/actions)
<!-- badges: end -->
[`ggplot2`](https://ggplot2.tidyverse.org/) is a plotting system for R based on the grammar of graphics. [`GGally`](https://ggobi.github.io/ggally/) extends ggplot2 by adding several functions to reduce the complexity of combining geoms with transformed data. Some of these functions include a pairwise plot matrix, a scatterplot plot matrix, a parallel coordinates plot, a survival plot, and several functions to plot networks.
## Installation
To install this package from GitHub or [CRAN](https://cran.r-project.org/package=GGally), do the following from the R console:
```r
# Github
library(devtools)
install_github("ggobi/ggally")
```
```r
# CRAN
install.packages("GGally")
```
|