Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ggobi/ggally
R package that extends ggplot2
https://github.com/ggobi/ggally
Last synced: 3 months ago
JSON representation
R package that extends ggplot2
- Host: GitHub
- URL: https://github.com/ggobi/ggally
- Owner: ggobi
- Created: 2011-02-19T00:18:46.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T21:00:43.000Z (9 months ago)
- Last Synced: 2024-10-04T07:15:12.356Z (4 months ago)
- Language: R
- Homepage: http://ggobi.github.io/ggally/
- Size: 392 MB
- Stars: 584
- Watchers: 27
- Forks: 119
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-r-dataviz - ggally - R package that extends ggplot2. [[Tutorial]](http://www.sthda.com/english/wiki/ggally-r-package-extension-to-ggplot2-for-correlation-matrix-and-survival-plots-r-software-and-data-visualization) (ggplot / Miscellaneous)
README
# [GGally](http://ggobi.github.io/ggally/): Extension to [ggplot2](https://ggplot2.tidyverse.org/)
[![R build status](https://github.com/ggobi/ggally/workflows/R-CMD-check/badge.svg)](https://github.com/ggobi/ggally/actions)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/GGally)](https://cran.r-project.org/package=GGally)
[![](http://cranlogs.r-pkg.org/badges/GGally)](https://cran.r-project.org/package=GGally)
[![DOI](https://zenodo.org/badge/22529/ggobi/ggally.svg)](https://zenodo.org/badge/latestdoi/22529/ggobi/ggally)
[![RStudio community](https://img.shields.io/badge/community-GGally-blue?style=social&logo=rstudio&logoColor=75AADB)](https://community.rstudio.com/tags/c/general/17/ggally)
[![R-CMD-check](https://github.com/ggobi/ggally/workflows/R-CMD-check/badge.svg)](https://github.com/ggobi/ggally/actions)[`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")
```