Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Artist类包含用于呈现到FigureCanvas中的对象的Abstract基类。图中所有可见元素都是Artist的子类。
matplotlib.artist.Artist.update()方法
matplotlib库的艺术家模块中的update()方法用于从字典道具中更新该艺术家的属性。
用法:Artist.update(self, props)
参数:此方法接受以下参数。
- props:此参数是属性的字典。
返回值:此方法不返回任何值。
以下示例说明了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()
输出:
范例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()
输出:
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.artist.Artist.update() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。