Python 中的 matplotlib . axis . axis . get _ minor _ formatter()函数
原文:https://www . geeksforgeeks . org/matplotlib-axis-axis-get _ minor _ formatter-python 中的函数/
Matplotlib 是 Python 中的一个库,是 NumPy 库的数值-数学扩展。这是一个神奇的 Python 可视化库,用于 2D 数组图,并用于处理更广泛的 SciPy 堆栈。
matplotlib . axis . axis . get _ minor _ formatter()函数
matplotlib 库的 Axis 模块中的 Axis.get_minor_formatter()函数用于获取 minor ticker 的格式化程序。
语法:axis . get _ minor _ formatter(self)
参数:该方法不接受任何参数。
返回值:这个方法返回次要跑马灯的格式化程序。
以下示例说明 matplotlib . axis . axis . get _ minor _ formatter()函数在 matplotlib.axis: 示例 1:
Python 3
# Implementation of matplotlib function
import numpy as np
from matplotlib.axis import Axis
import matplotlib.pyplot as plt
x = np.linspace(0, 10, 1000)
y = np.sin(2 * x)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x, y)
ax.grid()
print(Axis.get_minor_formatter(ax.yaxis))
plt.title("Matplotlib.axis.Axis.get_minor_formatter()\n\
Function Example", fontsize = 12, fontweight ='bold')
plt.show()
输出:
<matplotlib.ticker.NullFormatter object at 0x083B4E10>
例 2:
Python 3
# Implementation of matplotlib function
import numpy as np
from matplotlib.axis import Axis
import matplotlib.pyplot as plt
np.random.seed(19680801)
fig, ax = plt.subplots()
x, y, s, c = np.random.rand(4, 100)
s *= 100
ax.scatter(x, y, s, c)
ax.grid()
print(Axis.get_minor_formatter(ax.xaxis))
plt.title("Matplotlib.axis.Axis.get_minor_formatter()\n\
Function Example", fontsize = 12, fontweight ='bold')
plt.show()
输出:
<matplotlib.ticker.NullFormatter object at 0x089C9090>
版权属于:月萌API www.moonapi.com,转载请注明出处