Python中的 Matplotlib.axis.Axis.get_minorticklabels()函数
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。它是Python中用于二维数组图的惊人可视化库,用于处理更广泛的 SciPy 堆栈。
Matplotlib.axis.Axis.get_minorticklabels()函数
matplotlib 库的轴模块中的Axis.get_minorticklabels()函数用于获取次要刻度标签的 Text 实例列表。
Syntax: Axis.get_minorticklabels(self)
Parameters: This method does not accepts any parameter.
Return value: This method returns the list of Text instances for the minor ticklabels.
下面的示例说明了 matplotlib.axis 中的 matplotlib.axis.Axis.get_minorticklabels()函数:
示例 1:
Python3
# Implementation of matplotlib function
import numpy as np
from matplotlib.axis import Axis
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
np.random.seed(19680801)
fig, ax = plt.subplots()
ax.plot(100*np.random.rand(20))
Axis.set_minor_locator(ax.xaxis, ticker.MultipleLocator(1))
print("Value of get_minorticklabels() :")
for i in ax.xaxis.get_minorticklabels():
print(i)
plt.title("Matplotlib.axis.Axis.get_minorticklabels()\n\
Function Example", fontsize = 12, fontweight ='bold')
plt.show()
Python3
# Implementation of matplotlib function
import numpy as np
from matplotlib.axis import Axis
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
fig, ax = plt.subplots()
ax.plot(np.random.rand(1000),'go')
Axis.set_minor_locator(ax.yaxis, ticker.MultipleLocator(1))
print("Value of get_minorticklabels() :")
for i in ax.yaxis.get_minorticklabels():
print(i)
plt.title("Matplotlib.axis.Axis.get_minorticklabels()\n\
Function Example", fontsize = 12, fontweight ='bold')
plt.show()
输出:
Value of get_minorticklabels() :
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
Text(0, 0, '')
示例 2:
Python3
# Implementation of matplotlib function
import numpy as np
from matplotlib.axis import Axis
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
fig, ax = plt.subplots()
ax.plot(np.random.rand(1000),'go')
Axis.set_minor_locator(ax.yaxis, ticker.MultipleLocator(1))
print("Value of get_minorticklabels() :")
for i in ax.yaxis.get_minorticklabels():
print(i)
plt.title("Matplotlib.axis.Axis.get_minorticklabels()\n\
Function Example", fontsize = 12, fontweight ='bold')
plt.show()
输出:
Value of get_minorticklabels() :
Text(0, 0, '')
Text(0, 0, '')