Python 中的对数 Y 轴幅
要绘制 Python 中的对数 Y 轴幅,我们可以采用以下步骤:
使用 numpy 创建 x 和 y 点。
使用 yscale() 方法设置 Y 轴比例。
使用 plot() 方法绘制 x 和 y 点,加上 linestyle="dashdot" 和 label="y=log(x)"。
为激活折线标签,使用 legend() 方法。
为显示图形,使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(1, 100, 1000) y = np.log(x) plt.yscale('log') plt.plot(x, y, c="red", lw=3, linestyle="dashdot", label="y=log(x)") plt.legend() plt.show()
输出
广告