- 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 to remove whitespaces at the bottom of a Matplotlib graph?
To remove whitespaces at the bottom of a Matplotlib graph, we can use tight layout or autoscale_on=False.
steps
Set the figure size and adjust the padding between and around the subplots.
Create a new figure or activate an existing figure.
Add an 'ax' to the figure as part of a subplot arrangement.
Plot a list of data points using plot() method.
To display the figure, use show() method.
Example
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111, autoscale_on=False, xlim=(1, 5), ylim=(0, 10)) ax.plot([2, 5, 1, 2, 0, 7]) plt.show()
Output
- Related Articles
- How to show (0,0) on matplotlib graph at the bottom left corner?
- How to put the title at the bottom of a figure in Matplotlib?
- How to remove button bar at the bottom screen?
- How do I extend the margin at the bottom of a figure in Matplotlib?
- How to add a second X-axis at the bottom of the first one in Matplotlib?
- C# Program to remove whitespaces in a string
- Java Program to Remove All Whitespaces from a String
- Golang program to remove all whitespaces from a string
- Remove all whitespaces from string - JavaScript
- Remove the whitespaces from a string using replace() in JavaScript?
- How to change the attributes of a networkx / matplotlib graph drawing?
- How to manage image resolution of a graph in Matplotlib
- How to plot a high resolution graph in Matplotlib?
- How to make a grouped boxplot graph in matplotlib?
- How to shift a graph along the X-axis in matplotlib?

Advertisements