Packages
matplotlib pandas seaborn (https://seaborn.pydata.org/tutorial.html)
Statistical plotting
# create correation coefficient heat map with values
sns.heatmap(corr, xticklabels=corr.columns, yticklabels=corr.columns, cmap='coolwarm', annot=True, fmt='f')