Matplotlib.axes.axes.set_ybound()
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Axes包含了大多数图形元素:Axis、Tick、Line2D、Text、Polygon等,并设置坐标系。Axes的实例通过callbacks属性支持回调。
函数Matplotlib.axes.axes.set_ybound()
matplotlib库的Axes模块中的Axes.set_ybound()函数用于设置y轴的数值下界和上界。
Axes.set_ybound(self, lower=None,upper=None)
参数:该方法接受以下参数。
- lower、upper:表示上下限。如果None,则不修改相应的轴界。
该方法返回以下内容
- lower, upper:这将返回新的上下y轴边界。
注意:在各种情况下,这个函数可以用来代替set_ylim。
下面的例子演示了matplotlib.axes.axes.set_ybound()函数在matplotlib.axes中的作用:
示例1
# Implementation of matplotlib function
from matplotlib.widgets import Cursor
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(19680801)
fig, ax = plt.subplots()
x, y = 4*(np.random.rand(2, 50) - .5)
ax.plot(x, y, 'g')
ax.set_ybound(-4, 4)
ax.set_title('matplotlib.axes.Axes.set_ybound() Example\n',
fontsize = 14, fontweight ='bold')
plt.show()
输出:
示例2
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
fig1, ax1 = plt.subplots()
fig2, ax2 = plt.subplots()
ax1.set(xlim =(-0.5, 1.5), ylim =(-0.5, 1.5),
autoscale_on = False)
ax2.set(xlim =(0.5, 0.75), ylim =(0.5, 0.75),
autoscale_on = False)
x, y, s, c = np.random.rand(4, 200)
s *= 200
ax1.scatter(x, y, s, c)
ax2.scatter(x, y, s, c)
def GFG(event):
if event.button != 1:
return
x, y = event.xdata, event.ydata
ax2.set_xbound(x - 0.1, x + 0.1)
ax2.set_ybound(y - 0.2, y + 0.2)
fig2.canvas.draw()
fig1.canvas.mpl_connect('button_press_event', GFG)
ax1.set_title('matplotlib.axes.Axes.set_ybound()\
Example\n Original Window ',
fontsize = 14, fontweight ='bold')
ax2.set_title('Zoomed window ',
fontsize = 14, fontweight ='bold')
plt.show()
输出: