- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 can I programmatically select a specific subplot in Matplotlib?
To select a specific subplot in matplotlib, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create a new figure or activate an existing figure using figure() method.
Iterate in a range, i.e., number subplots to be placed.
In the loop itself, add an '~.axes.Axes' to the figure as part of a subplot arrangement using add_subplot() method.
Now, select an axes plot line with red color.
To display the figure, use show() method.
Example
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() for index in [1, 2, 3, 4]: ax = fig.add_subplot(1, 4, index) ax.plot(np.random.rand(5), np.random.rand(5)) ax = fig.add_subplot(1, 4, 2) ax.plot(np.random.rand(5), np.random.rand(5), color='red') plt.show()
Output
- Related Articles
- Matplotlib legends in subplot
- How can I select rows which fall on a specific day of week in MySQL?
- How to rotate tick labels in a subplot in Matplotlib?
- How do I change matplotlib's subplot projection of an existing axis?
- How can the ‘subplot’ function be used to create two graphs in Matplotlib Python?
- How to plot a pcolor colorbar in a different subplot in Matplotlib?
- How to make longer subplot tick marks in Matplotlib?
- How can I disable/enable GPS programmatically in android?
- Stuffing a Pandas DataFrame.plot into a Matplotlib subplot
- How to add a 3d subplot to a matplotlib figure?\n
- How can I set the background color on specific areas of a Pyplot figure using Matplotlib?
- How to plot multiple Seaborn Jointplot in Subplot using Matplotlib?
- How can I plot a confusion matrix in matplotlib?
- Displaying different images with actual size in a Matplotlib subplot
- Rotating axis text for each subplot in Matplotlib

Advertisements