HeatmapΒΆ

Example heatmap

../_images/sphx_glr_plot_sns_heatmap_001.png
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns

np.random.seed(0)
sns.set()

# Data for plot
uniform_data = np.random.rand(10, 12)

# Plot heatmap
ax = sns.heatmap(uniform_data)

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

Gallery generated by Sphinx-Gallery