-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from vsimko/master
- Loading branch information
Showing
11 changed files
with
264 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#' @docType package | ||
#' @name corrplot-package | ||
#' | ||
#' @title | ||
#' Visualization of a correlation matrix | ||
#' | ||
#' @description | ||
#' The corrplot package is a graphical display of a correlation matrix, | ||
#' confidence interval or general matrix. It also contains some algorithms to do | ||
#' matrix reordering. In addition, corrplot is good at details, including | ||
#' choosing color, text labels, color labels, layout, etc. | ||
#' | ||
#' @author Taiyun Wei (weitaiyun@@gmail.com) | ||
#' @author Viliam Simko (viliam.simko@@gmail.com) | ||
#' | ||
#' Maintainer: Taiyun Wei (weitaiyun@@gmail.com) | ||
#' | ||
#' @references | ||
#' Michael Friendly (2002). | ||
#' \emph{Corrgrams: Exploratory displays for correlation matrices}. | ||
#' The American Statistician, 56, 316--324. | ||
#' | ||
#' D.J. Murdoch, E.D. Chow (1996). | ||
#' \emph{A graphical display of large correlation matrices}. | ||
#' The American Statistician, 50, 178--180. | ||
#' | ||
#' @seealso | ||
#' The \code{plotcorr} function in the \code{ellipse} package and | ||
#' \code{corrgram} function in the \code{corrgram} package has some | ||
#' similarities. | ||
#' | ||
#' @keywords hplot | ||
#' @keywords correlation | ||
#' @keywords correlogram | ||
#' @keywords feature selection | ||
#' @keywords dimensionality reduction | ||
NULL | ||
|
||
.onAttach <- function(libname, pkgname) { | ||
# just to show a startup message | ||
message <- paste("corrplot", utils::packageVersion("corrplot"), "loaded") | ||
packageStartupMessage(message, appendLF = TRUE) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.