/corrplot

Create a correlation plot, as in the corrplot R package

Primary LanguagePython

CorrPlot

Create a correlation plot, as in the corrplot R package.

This is a simplified fork of https://github.com/louridas/corrplot

It takes a Pandas.DataFrame as input and returns a plot.

Example

from sklearn import datasets
iris = datasets.load_iris()
df = pd.DataFrame(iris.data, columns=iris.feature_names)
plot = myCorrPlot(df)
plot.show()

corrplotIRIS