Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。的Artist类包含呈现对象的Abstract基类到一个FigureCanvas中。图中所有可见元素都是Artist的子类。
Matplotlib.artist.Artist.axes()属性
matplotlib库的艺术家模块中的axes()属性是斧头艺术家所在的实例,或没有
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()
输出:
相关用法
注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Matplotlib.artist.Artist.axes in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。