当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.pyplot.ylim()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。

matplotlib.pyplot.ylim()函数

matplotlib库的pyplot模块中的ylim()函数用于获取或设置当前轴的y-limits。

用法: matplotlib.pyplot.ylim(*args, **kwargs)


参数:此方法接受以下描述的参数:

  • bottom:此参数用于将ylim设置为底部。
  • top:此参数用于将ylim设置为top。
  • **kwargs:此参数是文本属性,用于控制标签的外观。

返回值:这将返回以下内容:

  • 底部,顶部:这将返回新的y轴限制的元组。

以下示例说明了matplotlib.pyplot中的matplotlib.pyplot.ylim()函数:

范例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import numpy as np 
  
ax = plt.subplot(111) 
  
t = np.arange(0.0, 5.0, 0.01) 
s = np.cos(2 * np.pi * t) 
line, = plt.plot(t, s, lw = 2) 
  
plt.annotate('local max', xy =(2, 1), 
             xytext =(3, 1.5), 
             arrowprops = dict(facecolor ='black', 
                               shrink = 0.05), ) 
  
plt.ylim(-2, 2) 
plt.title(" matplotlib.pyplot.ylim() 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.ylim() Example") 
  
plt.show()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.pyplot.ylim() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。