How can I easily create heatmaps in Python? 2

How can I easily create heatmaps in Python?

Creating heatmaps in Python can be easily done using the Matplotlib library. Heatmaps are graphical representations of data where the values are represented by different colors. In order to create a heatmap in Python, one can use the Matplotlib function ‘imshow()’ which allows for the visualization of 2-dimensional arrays as heatmaps. This function can be customized to adjust the color scheme, labels, and other visual elements. Additionally, libraries such as Seaborn and Plotly also offer simple and efficient methods to create heatmaps in Python. By utilizing these tools, one can easily generate informative and visually appealing heatmaps for data analysis and visualization purposes.

Easily Create Heatmaps in Python


Suppose we have the following dataset in Python that displays the number of sales a certain shop makes during each weekday for five weeks:

import numpy as np
import pandas as pd 
import seaborn as sns

#create a dataset
np.random.seed(0)
data = {'day': np.tile(['Mon', 'Tue', 'Wed', 'Thur', 'Fri'], 5),
        'week': np.repeat([1, 2, 3, 4, 5], 5),
        'sales': np.random.randint(0, 50, size=25)
        }

df = pd.DataFrame(data,columns=['day','week','sales'])
df = df.pivot('day', 'week', 'sales')

view first ten rows of dataset
df[:10]

week	 1	 2	 3	 4	 5
day					
Fri	 3	36	12	46	13
Mon	44	39	23	 1	24
Thur	 3	21	24	23	25
Tue	47	 9	 6	38	17
Wed	 0	19	24	39	37

Create Basic Heatmap

We can create a basic heatmap using the sns.heatmap() function:

sns.heatmap(df)

Heatmap

The colorbar on the righthand side displays a legend for what values the various colors represent. 

Add Lines to Heatmap

You can add lines between the squares in the heatmap using the linewidths argument:

sns.heatmap(df, linewidths=.5)

Heatmap

Add Annotations to Heatmap

You can also add annotations to the heatmap using the annot=True argument:

sns.heatmap(df, linewidths=.5, annot=True)

Annotated heatmap in Python

Hide Colorbar from Heatmap

You can also hide the colorbar entirely using the cbar=False option:

sns.heatmap(df, linewidths=.5, annot=True, cbar=False)

Example of a heatmap in Python

Change Color Theme of Heatmap

You can also change the color theme using the cmap argument. For example, you could set the colors to range from yellow to green to blue:

sns.heatmap(df, cmap='YlGnBu')

Heatmap

Or you could have the colors range from red to blue:

sns.heatmap(df, cmap='RdBu')

heatmap with different cmap in Python

For a complete list of colormaps, refer to the matplotlib documentation.

Cite this article

stats writer (2024). How can I easily create heatmaps in Python?. PSYCHOLOGICAL SCALES. Retrieved from https://scales.arabpsychology.com/stats/how-can-i-easily-create-heatmaps-in-python/

stats writer. "How can I easily create heatmaps in Python?." PSYCHOLOGICAL SCALES, 16 Apr. 2024, https://scales.arabpsychology.com/stats/how-can-i-easily-create-heatmaps-in-python/.

stats writer. "How can I easily create heatmaps in Python?." PSYCHOLOGICAL SCALES, 2024. https://scales.arabpsychology.com/stats/how-can-i-easily-create-heatmaps-in-python/.

stats writer (2024) 'How can I easily create heatmaps in Python?', PSYCHOLOGICAL SCALES. Available at: https://scales.arabpsychology.com/stats/how-can-i-easily-create-heatmaps-in-python/.

[1] stats writer, "How can I easily create heatmaps in Python?," PSYCHOLOGICAL SCALES, vol. X, no. Y, ص Z-Z, April, 2024.

stats writer. How can I easily create heatmaps in Python?. PSYCHOLOGICAL SCALES. 2024;vol(issue):pages.

Download Post (.PDF)
Slide Up
x
PDF
Scroll to Top