Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kwstat/corrgram
Correlograms
https://github.com/kwstat/corrgram
rstats
Last synced: about 2 months ago
JSON representation
Correlograms
- Host: GitHub
- URL: https://github.com/kwstat/corrgram
- Owner: kwstat
- License: other
- Created: 2014-08-08T15:41:31.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-07-17T19:01:59.000Z (7 months ago)
- Last Synced: 2024-12-23T05:34:28.791Z (about 2 months ago)
- Topics: rstats
- Language: HTML
- Homepage: http://kwstat.github.io/corrgram/
- Size: 8.85 MB
- Stars: 18
- Watchers: 5
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- awesome-r-dataviz - corrgram - A simple way to create correlograms from raw data or a correlation matrix. (ggplot / Additional Plot Types)
README
# corrgram
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/corrgram)](https://cran.r-project.org/package=corrgram)
[![CRAN_Downloads](https://cranlogs.r-pkg.org/badges/corrgram)](https://cranlogs.r-pkg.org/badges/corrgram)Homepage: https://kwstat.github.io/corrgram
Repository: https://github.com/kwstat/corrgram
The `corrgram` package provides a simple way to create correlograms from raw data or a correlation matrix.
## Key features
* Stable, well-tested, widely used.
* Extensive examples show how to customize the display.
## Installation
```R
# Install the released version from CRAN:
install.packages("corrgram")# Install the development version from GitHub:
install.packages("devtools")
devtools::install_github("kwstat/corrgram")
```## Usage
```R
require(corrgram)
corrgram(mtcars, order=TRUE, lower.panel=panel.shade, upper.panel=panel.pie,
text.panel=panel.txt, main="mtcars")
```
![corrgram](man/figures/corrgram_mtcars.png)