

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
How to draw axis lines inside a plot in Matplotlib?
To draw axis lines inside a plot 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.
- Create x data points using numpy.
- Add an 'ax' to the figure as part of a subplot arrangement.
- Plot x and x**x data points using plot() method.
- Set the left and bottom positions at 0, whereas color of the right and top spines none.
- To display the figure, use show() method.
Example
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() x = np.linspace(-5, 5, 100) ax = fig.add_subplot(111) ax.plot(x, x*x) ax.spines['left'].set_position('zero') ax.spines['right'].set_color('none') ax.spines['bottom'].set_position('zero') ax.spines['top'].set_color('none') plt.show()
Output
It will produce the following output
- Related Questions & Answers
- Draw axis lines or the origin for Matplotlib contour plot.
- How to remove lines in a Matplotlib plot?
- How to plot overlapping lines in Matplotlib?
- How to draw more type of lines in Matplotlib?
- How to add text inside a plot in Matplotlib?
- How to draw grid lines behind Matplotlib bar graph?
- How to plot a rectangle inside a circle in Matplotlib?
- How to draw a line outside of an axis in Matplotlib?
- Plot a circle inside a rectangle in Matplotlib
- How to draw axis in the middle of a figure in Matplotlib?
- How to add vertical lines to a distribution plot (sns.distplot) in Matplotlib?
- How to plot a rectangle on a datetime axis using Matplotlib?
- How to draw an average line for a scatter plot in MatPlotLib?
- Matplotlib Plot Lines with Colors through Colormap
- How to plot the lines first and points last in Matplotlib?
Advertisements