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


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


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

matplotlib.pyplot.grid()函数

matplotlib库的pyplot模块中的grid()函数用于配置网格线。

用法: matplotlib.pyplot.grid(b=None, which=’major’, axis=’both’, \*\*kwargs)


参数:此方法接受以下参数。

  • b:此参数是可选参数,是否显示网格线。
  • which:此参数也是可选参数,是应用更改的网格线。
  • axis:此参数也是可选参数,它是应用更改的轴。

返回值:此方法不返回任何值。

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

范例1:

# Implementation of matplotlib function    
import matplotlib.pyplot as plt 
import numpy as np 
      
plt.plot([1, 2, 3]) 
plt.grid() 
  
plt.title('matplotlib.pyplot.grid() function \ 
Example\n\n', fontweight ="bold") 
plt.show()

输出:

范例2:

# Implementation of matplotlib function    
import numpy as np 
import matplotlib.pyplot as plt 
  
np.random.seed(19680801) 
  
val, res = 100, 15
x = np.sin(val + res * np.random.randn(10000)) - np.cos(val + res * np.random.randn(10000)) 
  
n, bins, patches = plt.hist(x, 200,  
                            density = True,  
                            facecolor ='g',  
                            alpha = 0.5) 
  
plt.grid(True) 
  
plt.title('matplotlib.pyplot.grid() function \ 
Example\n\n', fontweight ="bold") 
  
plt.show()

输出:




相关用法


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