- 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
Increasing the space for X-axis labels in Matplotlib
To increase the space for X-axis labels in Matplotlib, we can use the spacing variable in subplots_adjust() method's argument.
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.
Create x and y data points using numpy.
Plot x and y using plot() method.
Put xlabel using xlabel() method with LaTex expression.
Use subplots_adjust() method to increase or decrease the space for X-axis labels
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 fig = plt.figure() x = np.linspace(-2, 2, 10) y = np.exp(x) plt.plot(x, y) plt.xlabel("$\bf{y=e^{x}}$") spacing = 0.100 fig.subplots_adjust(bottom=spacing) plt.show()
Output
- Related Articles
- Tweaking axis labels and names orientation for 3D plots in Matplotlib
- Hide axis values but keep axis tick labels in matplotlib
- How to change the separation between tick labels and axis labels in Matplotlib?
- How to remove or hide X-axis labels from a Seaborn / Matplotlib plot?
- Show tick labels when sharing an axis in Matplotlib
- How to adjust the space between legend markers and labels in Matplotlib?
- How to change the color of the axis, ticks and labels for a plot in matplotlib?
- How to display positive sign for X-axis labels in R using ggplot2?
- How to change the X-axis labels for boxplots created by using boxplot function in R?
- How to customize the X-axis in Matplotlib?
- Centering x-tick labels between tick marks in Matplotlib
- How to write text in subscript in the axis labels and the legend using Matplotlib?
- Creating a graph with date and time in axis labels with Matplotlib
- How to display X-axis labels inside the plot in base R?
- Show the origin axis (x,y) in Matplotlib plot

Advertisements