Python中的 Matplotlib.artist.Artist.update()
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Artist 类包含呈现为 FigureCanvas 的对象的 Abstract 基类。图中所有可见元素都是 Artist 的子类。
matplotlib.artist.Artist.update() 方法
matplotlib 库的艺术家模块中的update() 方法用于从字典道具更新此艺术家的属性。
Syntax: Artist.update(self, props)
Parameters: This method accepts the following parameters.
- props: This parameter is the dictionary of the properties.
Returns: This method does not return any value.
下面的示例说明了 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()
输出: