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()

输出

更新时间: 10-Apr-2021

3K+ 浏览量

开启您的职业生涯

完成课程以获得认证

开始学习
广告