matplotlib.pyplot.xlim()函数
matplotlib.pyplot.xlim()函数
matplotlib库pyplot模块中的xlim()函数用于获取或设置当前轴的x限制。
语法:
matplotlib.pyplot.xlim(*args, **kwargs)
参数:该方法接受如下参数说明:
- left:用于将xlim设置为left。
- right:该参数用于将xlim设置为右。
- **kwargs:这个参数是Text属性,用于控制标签的外观。
返回如下内容:
- left, right:返回新的x轴限制的元组。
下面的例子演示了matplotlib.pyplot.ylim()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
h = plt.plot(np.arange(0, 10), np.arange(0, 10))
plt.xlim([-5, 20])
l1 = np.array((1, 1))
angle = 65
th1 = plt.text(l1[0], l1[1], 'Line_angle',
fontsize = 10, rotation = angle,
rotation_mode ='anchor')
plt.title(" matplotlib.pyplot.xlim() Example")
plt.show()
输出:
示例2
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
np.random.seed(9680801)
mu, sigma = 50, 13
x = mu + sigma * np.random.randn(10000)
# the histogram of the data
n, bins, patches = plt.hist(x, 50,
density = True,
facecolor ='g',
alpha = 0.75)
plt.xlabel('No of Users in K')
plt.title('Histogram of IQ')
plt.text(50, .035, r'\mu = 50, \
\ \sigma = 13')
plt.xlim(-10, 110)
plt.ylim(0, 0.04)
plt.grid(True)
plt.title(" matplotlib.pyplot.xlim() Example")
plt.show()
输出: