如何设置 matplotlib 中轴乘数的值?
若要设置 matplotlib 中轴乘数的值,我们可以采取以下步骤 -
步骤
设置图形大小并且调整子图之间的填充以及周围的填充。
使用 numpy 创建 x 数据点。
使用 plot() 方法绘制 x 和 x2。
获取图形的当前轴。
初始化一个变量 multiplier,即轴乘数的值。
在视区间隔中将每个整数倍数设置为一个刻度。
设置主刻度的定位器。
若要显示图形,使用 show() 方法。
示例
# Import matplotlib and numpy from matplotlib import pyplot as plt import numpy as np # Set the figure size plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True # Create x data points x = np.linspace(1, 100, 100) # Plot x and x2 plt.plot(x, x**2) # Get the current axis ax = plt.gca() # Axis multiplier multiplier = 6 # Set a tick on each integer multiple locator = plt.MultipleLocator(multiplier) # Set the locator of the major ticker ax.xaxis.set_major_locator(locator) plt.show()
输出
它会产生以下输出 -
广告