Matplotlib.artist.artist.update() - 从字典道具中更新这个artist的属性

Matplotlib.artist.artist.update()

Python matplotlib库的artist模块中的update()方法用于从字典道具中更新这个artist的属性。

语法:Artist.update(self, props)

参数:该方法接受以下参数。

  • props:该参数是属性的字典。

Returns:该方法不返回任何值。

下面的例子说明了matplotlib中的matplotlib.artist.artist.update()函数:

示例1

# Implementation of matplotlib function
from matplotlib.artist import Artist
import matplotlib.pyplot as plt 
import numpy as np 
  
          
np.random.seed(10**7) 
geeks = np.random.randn(100) 
     
fig, ax = plt.subplots() 
ax.acorr(geeks, usevlines = True, 
         normed = True, 
         maxlags = 80, lw = 3) 
    
ax.grid(True) 
    
prop = {'xticks': np.array([-10., -5.,
                            0., 5., 10.]), 
        'yticks': np.array([-0.2,  0.2, 
                            0.6, 1., 1.4]), 
        'ylabel': None, 'xlabel': None} 
    
Artist.update(ax, prop) 
           
fig.suptitle('matplotlib.artist.Artist.update()\
 function Example', fontweight ="bold") 
  
plt.show()

输出:

Matplotlib.artist.artist.update()

示例2

# Implementation of matplotlib function
from matplotlib.artist import Artist
import numpy as np  
import matplotlib.pyplot as plt  
    
    
xx = np.random.rand(16, 30)  
       
fig, ax = plt.subplots()  
       
m = ax.pcolor(xx)  
m.set_zorder(-20) 
prop = {'autoscalex_on': False}
  
Artist.update(ax, prop) 
           
fig.suptitle('matplotlib.artist.Artist.update() \
function Example', fontweight ="bold") 
  
plt.show()

输出:

Matplotlib.artist.artist.update()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Matplotlib.artist