Package corrplot is for visualizing a correlation matrix
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.
The R core development team and the very active community of package authors have invested a lot of time and effort in creating R as it is today. Please give credit where credit is due and cite R and R packages when you use them for data analysis. To cite
corrplotproperly, call the R built-in command
citation("corrplot")as follows:
r library(corrplot) citation("corrplot")
library(corrplot) M
Download and Install
To download the development version of the package, type the following at the R command line:
r 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:
r install.packages("corrplot")How to contribute
CTRL+SHIFT+Tin RStudio
If you encounter a clear bug, please file a minimal reproducible example on github.
We use
lintrwhich also performs the analysis on Travis-CI. Configuration for
lintris in
.lintrfile. Lints are treated as warnings, but we strive to be lint-free.
In RStudio, you can run
lintrfrom the console as follows: ```r
lintr::lint_package() ```
This package is free and open source software, licensed under MIT