Matplotlib.axis.axis.update_units()
matplotlib库的Axis模块中的Axis.update_units()函数用于更新units转换器的数据,并在必要时更新Axis.converter实例。
语法:Axis.update_units(self, data)
参数:该方法接受以下参数。
- data:该参数是要更新的数据。
返回值:如果数据被注册为单位转换,该方法返回True。
下面的例子演示了matplotlib.axis.axis.update_units()函数在matplotlib.axis中的作用:
示例1
# Implementation of matplotlib function
from matplotlib.axis import Axis
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([-100., -50.,
0., 50., 100.]),
'yticks': np.array([-0.2, 0.2,
0.6, 1., 1.4]),
'ylabel': None, 'xlabel': None}
ax.update(prop)
w = Axis.update_units(ax.xaxis,[1,2,3,4,5])
print(w)
fig.suptitle("""matplotlib.axis.Axis.update_units()
function Example\n""", fontweight ="bold")
plt.show()
输出:
False
示例2
# Implementation of matplotlib function
from matplotlib.axis import Axis
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)
w = Axis.update_units(ax.xaxis,[1,2,3,4,5])
print(w)
fig.suptitle("""matplotlib.axis.Axis.update_units()
function Example\n""", fontweight ="bold")
plt.show()
输出:
False