- 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 make joint bivariate distributions in Matplotlib?
To make joint bivariate distributions in matplotlib, we can use the scatter method.
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 scatter() method.
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.scatter(x, y, alpha=0.08, cmap="copper", c=x) plt.show()
Output
- Related Articles
- How to plot the difference of two distributions in Matplotlib?
- How can a simple bivariate distribution be shown using ‘imshow’ in Matplotlib Python?
- How to make axes transparent in Matplotlib?
- How to make the Parula colormap in Matplotlib?
- How to make a multicolored point in Matplotlib?
- How to make a rug plot in Matplotlib?
- How to make a mosaic plot in Matplotlib?
- How to make a simple lollipop plot in Matplotlib?
- How to make markers on lines smaller in Matplotlib?
- How to make an arrow that loops in Matplotlib?
- How to make semilogx and semilogy plots in Matplotlib?
- How to make longer subplot tick marks in Matplotlib?
- How to make a grouped boxplot graph in matplotlib?
- How to make Matplotlib show all X coordinates?
- How to make a broken horizontal bar plot in Matplotlib?

Advertisements