⚠️There's a newer version (0.92) of this package. Take me there.

Summary

The R package corrplot is for visualizing correlation matrices and confidence intervals. It also contains some algorithms to do matrix reordering. For examples, see its vignette.

This package is licensed under GPL, and available on CRAN: http://cran.r-project.org/package=corrplot.

Basic example

library(corrplot)
M <- cor(mtcars)
corrplot(M, order = "hclust", addrect = 2)

Download and Install

To download the development version of the package, type the following at the R command line:

install.packages("devtools")
devtools::install_github("taiyun/corrplot", build_vignettes = TRUE)

To download the release version of the package on CRAN, type the following at the R command line:

install.packages("corrplot")

How to contribute

  • Fork, clone, edit, commit, push, create pull request
  • Use RStudio
  • Unit-testing: press CTRL+SHIFT+T in RStudio
    • we know that is hard to write tests especially for a visual package like this

Reporting bugs and other issues

If you encounter a clear bug, please file a minimal reproducible example on github.

How to perform static code analysis and style checks

We use lintr which also performs the analysis on Travis-CI. Configuration for lintr is in .lintr file. Lints are treated as warnings, but we strive to be lint-free.

In RStudio, you can run lintr from the console as follows:

> lintr::lint_package()

Who do I talk to?

License

This package is free and open source software, licensed under GPL.

Other links

Copy Link

Version

Down Chevron

Install

install.packages('corrplot')

Monthly Downloads

179,554

Version

0.77

License

GPL

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

April 21st, 2016

Functions in corrplot (0.77)