Saturday, July 11, 2026
HomeLanguagesMatplotlib.axis.Axis.set() function in Python

Matplotlib.axis.Axis.set() 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.set() Function

The Axis.set() function in axis module of matplotlib library is a property batch setter. Pass kwargs to set properties. 
 

Syntax: Axis.set(self, **kwargs) 
 

Parameters: This method does not accepts any parameters other than **kwargs. 
 

Return value: This method does not return any value. 

Below examples illustrate the matplotlib.axis.Axis.set() function in matplotlib.axis:
Example 1:

Python3




# Implementation of matplotlib function
from matplotlib.axis import Axis
import matplotlib  
import matplotlib.pyplot as plt  
import numpy as np  
       
    
t = np.arange(0.0, 2, 0.001)  
s = 1 + np.sin(8 * np.pi * t)*0.4
       
fig, ax = plt.subplots()  
ax.plot(t, s)  
       
Axis.set(ax, xlabel ='X-Axis', ylabel ='Y-Axis',  
    xlim =(0, 1.5), ylim =(0.5, 1.5))  
    
ax.grid()  
  
fig.suptitle('matplotlib.axis.Axis.set() \
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  
np.random.seed(19680801)  
      
    
fig, ax = plt.subplots()  
      
x, y, s, c = np.random.rand(4, 200)  
s *= 200
      
ax.scatter(x, y, s, c) 
    
Axis.set(ax, xlabel ='X-Axis', ylabel ='Y-Axis',  
   xlim =(0, 0.5), ylim =(0, 0.5))  
    
ax.grid()   
  
fig.suptitle('matplotlib.axis.Axis.set() \
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

3 COMMENTS

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6901 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12111 POSTS0 COMMENTS
Shaida Kate Naidoo
7021 POSTS0 COMMENTS
Ted Musemwa
7263 POSTS0 COMMENTS
Thapelo Manthata
6978 POSTS0 COMMENTS
Umr Jansen
6968 POSTS0 COMMENTS