Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。
matplotlib.axes.Axes.yaxis_inverted()函数
matplotlib库的axiss模块中的Axes.yaxis_inverted()函数返回y轴是否反转。
用法: Axes.yaxis_inverted(self)
参数:此方法不接受任何参数。
返回:此方法返回y轴是否反转。
以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.yaxis_inverted()函数:
范例1:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots()
ax.axvspan(1.5, 2.5, facecolor ='g', alpha = 0.7)
ax.invert_yaxis()
ax.set_title('matplotlib.axes.Axes.yaxis_inverted() \
Example\n',
fontsize = 14, fontweight ='bold')
x = ax.yaxis_inverted()
ans ="No"
if x:
ans ="Yes"
ax.text(1.8, -0.02, "Y-axis is inverted ?:" + ans,
style ='italic', fontsize = 12)
plt.show()
输出:
范例2:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
np.random.seed(19680801)
plt.rcdefaults()
fig, ax = plt.subplots()
people = ('Geek1', 'Geek2', 'Geek3',
'Geek4', 'Geek5')
y_pos = np.arange(len(people))
performance = 3 + 4.5 * np.random.rand(len(people))**2
error = np.random.rand(len(people))
ax.barh(y_pos, performance, xerr = error,
align ='center', color ="green")
ax.set_yticks(y_pos)
ax.set_yticklabels(people)
ax.invert_yaxis()
ax.set_xlabel('Performance')
x = ax.yaxis_inverted()
ans ="No"
if x:
ans ="Yes"
ax.set_title('matplotlib.axes.Axes.yaxis_inverted() \
Example\n',
fontsize = 14, fontweight ='bold')
ax.text(3, -0.75, "Y-axis is inverted ?:" + ans,
style ='italic', fontsize = 12)
plt.show()
输出:
相关用法
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axes.Axes.yaxis_inverted() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。