
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Adjust Heights of Individual Subplots in Matplotlib
To adjust the heights of individual subplots in Matplotlib in Python, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Add a subplot to the current figure, nrows=7, ncols=2 and at index=1.
- Add a subplot to the current figure, nrows=2, ncols=2 and at index=3
- Add a subplot to the current figure, nrows=1, ncols=3 and at index=3
- To display the figure, use show() method.
Example
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True plt.subplot(7, 2, 1) plt.subplot(2, 2, 3) plt.subplot(1, 3, 3) plt.show()
Output
Advertisements