Correlation Heatmaps

SeemzQ
1 min readMay 13, 2021

--

A correlation heatmap is graphical representation using color gradients to show a relationship between variables. The values are represented in colors in a gradient. The stronger the color between two variables, the more correlation there is. Whereas, the lighter the gradient,

Correlation is between -1 and 1. In addition to colors, the variables are given values. The closer it is to 1, there is a direct relation. The closer to -1, there is more of an inverse relationship.

“This analysis is one of the methods used to decide which features affect the target variable the most, and in turn, get used in predicting this target variable. In other words, it’s a commonly-used method for feature selection in machine learning.” https://heartbeat.fritz.ai/seaborn-heatmaps-13-ways-to-customize-correlation-matrix-visualizations-f1c49c816f07

A correlation heatmap can be done with Seaborn. The following is what I did to see which variables below correlated with cardiovascular disease.

plt.subplots(figsize=(15,10))

sns.heatmap(df.corr(), annot = True, vmin=-1, vmax=1, center= 0, cmap= ‘coolwarm’, linewidths=3, linecolor=’blue’)

What is fun with these is that you can change the color options to your liking. These are such a great tool for your correlation analysis! Definitely worth trying out for your analysis projects!

--

--