Skip to content

Emanuele-Pepe/shinyCorrplot

 
 

Repository files navigation

Correlation Matrix in Shiny with corrplot

This Shiny application aims to provide an interactive experience to the awesome corrplot R package. Correlation is one of the most commonly used metrics to depict statistical relationships between two variables. It's often used in exploratory analysis, feature selection and many other modelling steps.

Overview

Data Input

Currently we provide a list of built-in datasets sourced from various R packages. You can also upload your own in any delimited flat file format.

Variable Selection

You can use checkboxes to pick only the variables you want to see. Furthremore, you can drag variables around to manually reorder the columns. This will have an obvious impact if you choose to see correlation in their original order. However it can also affect some reordering algorithms such as AOE.

The reordering by checkbox updates the plot in realtime while the selectize style only udpates when you drop the selection. When the server is powerful enough, the realtime update can be very helpful. Otherwise, it will seem visually disruptive.

Correlation

The cor function in stats package is used thus you have the freedom to choose from pearson, kendall, and spearman correlation and some control over how to treat NA values.

Corrplot

We have include abilities to generate most examples in corrplot vignette. In particular, you can make statstical inference on correlation significance and/or confidence intervals.

Credits

Thanks goes to corrplot and sortList example for inspiration, and Developing Data Products on Coursera for motivation and this great opportunity.

LICENSE

MIT

About

Correlation Matrix in Shiny with corrplot

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 86.4%
  • JavaScript 13.6%