- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to plot a 2D histogram in Matplotlib?
To plot a 2D histogram in matplotlib, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create x and y data points using numpy.
Create a figure and a set of subplots.
Plot x and y using hist2d() method.
Set the title of the plot.
To display the figure, use show() method.
Example
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = 2 * np.random.randn(5000) y = x + np.random.randn(5000) fig, ax = plt.subplots() _ = ax.hist2d(x[::10], y[::10]) ax.set_title('2D Histogram') plt.show()
Output
- Related Articles
- How to plot hexbin histogram in Matplotlib?
- How to center labels in a Matplotlib histogram plot?
- How to plot collections.Counter histogram using Matplotlib?
- How to plot a line graph from histogram data in Matplotlib?
- How to plot 2D math vectors with Matplotlib?
- How to plot 2d FEM results using matplotlib?
- How to plot a 2D matrix in Python with colorbar Matplotlib?
- How to plot a smooth 2D color plot for z = f(x, y) in Matplotlib?
- How to plot a histogram using Matplotlib in Python with a list of data?
- Plot a histogram with Y-axis as percentage in Matplotlib
- Plot a histogram with colors taken from colormap in Matplotlib
- Python - Plot a Histogram for Pandas Dataframe with Matplotlib?
- How to save a histogram plot in Python?
- How can I plot a histogram such that the heights of the bars sum to 1 in matplotlib?
- How to a plot stem plot in Matplotlib Python?

Advertisements