Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。
matplotlib.pyplot.minorticks_off()函数:
matplotlib库的pyplot模块中的minorticks_off()函数用于删除轴上的较小刻度线。
用法: matplotlib.pyplot.minorticks_off()
参数: This method does not accepts any parameters.
Return value: This method does not returns any value.
注意:如果在使用minorticks_on()函数后使用此函数,它将显示任何更改或效果。
以下示例说明了matplotlib.pyplot中的matplotlib.pyplot.minorticks_off()函数:
范例1:
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
plt.minorticks_on()
np.random.seed(19680801)
mu, sigma = 100, 15
x = mu + sigma * np.random.randn(10000)
plt.hist(x, 150, density = True, facecolor ='g', alpha = 0.65)
plt.xlim(40, 160)
plt.ylim(0, 0.03)
plt.grid(True)
plt.minorticks_off()
plt.title('matplotlib.pyplot.minorticks_off() function Example',
fontweight ="bold")
plt.show()
输出:
范例2:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0.0, 2, 0.01)
y1 = np.sin(2 * np.pi * x)
y2 = 1.2 * np.sin(4 * np.pi * x)
plt.minorticks_on()
plt.fill_between(x, y1, y2, color ="green", alpha = 0.6)
plt.minorticks_off()
plt.title('matplotlib.pyplot.minorticks_off() function Example',
fontweight ="bold")
plt.show()
输出:
相关用法
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 matplotlib.pyplot.minorticks_off() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。