matplotlib.pyplot.minorticks_on()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
matplotlib.pyplot.minorticks_on()函数:
matplotlib库pyplot模块中的minorticks_on()函数用于显示轴上的小刻度。
语法:
matplotlib.pyplot.minorticks_on()
参数:此方法不接受任何参数。
返回值:此方法不返回任何值。
下面的例子演示了matplotlib.pyplot.minorticks_on()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.cbook as cbook
import matplotlib.cm as cm
from matplotlib.collections import LineCollection
from matplotlib.ticker import MultipleLocator
with cbook.get_sample_data('s1045.ima.gz') as dfile:
im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256))
im = np.ravel(im)
im = im[np.nonzero(im)]
im = im / (2**20 - 1)
plt.hist(im, bins = 40, color ="green")
plt.minorticks_on()
plt.title('matplotlib.pyplot.minorticks_on() 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.fill_between(x, y1, y2, color ="green", alpha = 0.6)
plt.minorticks_on()
plt.title('matplotlib.pyplot.minorticks_on() function Example', fontweight ="bold")
plt.show()
输出: