Generating a heat map of correlations (bubble version)ΒΆ

This is an example of generating a heat map for showing correlations between variables. The correlation between variables is obtained as the Pearson correlation coefficient.

The heat map is generated from a pandas.core.frame.DataFrame and all pairs of variables (based on columns) are considered.

Here, we show a version where the correlation values are shown as circles where the radius is proportional to the correlation.

plot 002 heatmap bubble
from matplotlib import pyplot as plt
import pandas as pd
from sklearn.datasets import load_wine as load_data
from psynlig import plot_correlation_heatmap
plt.style.use('seaborn-talk')


data_set = load_data()
data = pd.DataFrame(data_set['data'], columns=data_set['feature_names'])

kwargs = {
    'heatmap': {
        'vmin': -1,
        'vmax': 1,
        'cmap': 'viridis',
    },
    'figure': {
        'figsize': (14, 10),
    },
}

plot_correlation_heatmap(data, bubble=True, annotate=False, **kwargs)
plt.show()

Total running time of the script: ( 0 minutes 0.999 seconds)

Gallery generated by Sphinx-Gallery