matplotlib.pyplot.minorticks_off()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
matplotlib.pyplot.minorticks_off()函数:
matplotlib库pyplot模块中的minorticks_off()函数用于从轴中删除次要的刻度。
语法:matplotlib.pyplot.minorticks_off ()
参数:此方法不接受任何参数。
返回值:此方法不返回任何值。
注意:如果在使用minorticks_on()函数之后使用这个函数,它将显示任何更改或效果。
下面的例子演示了matplotlib.pyplot.minorticks_off()函数在matplotlib.pyplot中的作用:
示例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()
输出: