Friday, September 5, 2025
HomeLanguagesMatplotlib.axis.Axis.pan() function in Python

Matplotlib.axis.Axis.pan() function in Python

Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. It is an amazing visualization library in Python for 2D plots of arrays and used for working with the broader SciPy stack.

Matplotlib.axis.Axis.pan() Function

The Axis.pan() function in axis module of matplotlib library is used to Pan by numsteps. 
 

Syntax: Axis.pan(self, numsteps) 
 

Parameters: This method accepts the following parameters. 

  • numsteps: This parameter is the value(positive or negative).

Return value: This method does not return any value. 

Below examples illustrate the matplotlib.axis.Axis.pan() function in matplotlib.axis:
 

Example 1:

Python3




# Implementation of matplotlib function
from matplotlib.axis import Axis
import matplotlib.pyplot as plt 
import numpy as np 
    
fig, ax = plt.subplots() 
ax.plot([1, 2, 3])  
    
ax.xaxis.pan(3)
   
ax.grid() 
   
fig.suptitle("""matplotlib.axis.Axis.pan()
function Example\n""", fontweight ="bold")  
     
plt.show()


Output: 
 

Example 2:

Python3




# Implementation of matplotlib function
from matplotlib.axis import Axis
import numpy as np 
import matplotlib.pyplot as plt 
from matplotlib.widgets import Slider, Button, RadioButtons 
       
fig, ax1 = plt.subplots() 
plt.subplots_adjust(bottom = 0.25
t = np.arange(0.0, 1.0, 0.001
a0 = 5
f0 = 3
delta_f = 5.0
s = a0 * np.sin(2 * np.pi * f0 * t) 
       
ax1.plot(t, s, lw = 2, color = 'green'
  
ax1.xaxis.pan(-2)
   
ax1.grid() 
   
fig.suptitle("""matplotlib.axis.Axis.pan()
function Example\n""", fontweight ="bold")  
     
plt.show()


Output: 
 

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS