Python中的 Matplotlib.artist.Artist.axes
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Artist 类包含呈现为 FigureCanvas 的对象的 Abstract 基类。图中所有可见元素都是 Artist 的子类。
Matplotlib.artist.Artist.axes() 属性
matplotlib 库的艺术家模块中的axes() 属性是艺术家所在的 Axes实例,或者None
property: Artist.axes
下面的示例说明了 matplotlib 中的 matplotlib.artist.Artist.axes() 属性:
示例 1:
# Implementation of matplotlib function
from matplotlib.artist import Artist
import matplotlib.pyplot as plt
# providing values to x and y
x = [8, 5, 11, 13, 16, 23]
y = [14, 8, 21, 7, 12, 15]
# to plot x and y
plt.plot(x, y)
# use of axes() property
axs = Artist.axes
plt.text(8.5, 14, str(axs), fontweight="bold")
plt.title("""matplotlib.artist.Artist.axes()
property Example""", fontweight="bold")
plt.show()
输出:
示例 2:
# Implementation of matplotlib function
from matplotlib.artist import Artist
import matplotlib.pyplot as plt
# providing values to x and y
x = [8, 5, 11, 13, 16, 23]
y = [14, 8, 21, 7, 12, 15]
# to plot x and y
plt.plot(x, y)
plt.axes(facecolor = 'black')
axs = Artist.axes
print(str(axs))
plt.title("""matplotlib.artist.Artist.axes()
property Example""", fontweight="bold")
plt.show()
输出: