1

我在 Python 中生成以下日志图: 在此处输入图像描述

数据在这里。我想在这个图中添加一系列在这对数据值之间开始和结束的直线:

[1.0, 0.05556],
[1.0, 1.0],
[1.0, 17.9996],
[1.0, 5831.9992]

在 Matlab 中,您只需生成上面的 loglog 图,然后使用简单的 plot 命令将一对数据点作为输入,然后将两个图合并为一个。Python/Matplotlib 中是否有类似的方法?我尝试使用:

plt.loglog(main_data)
plt.plot(linspace_data)  # linspace_data is a linear interpolation between the data values above.

但没有成功......基本上,我想要这个情节(在Matlab中生成): 在此处输入图像描述

4

1 回答 1

3

这在 OO 界面中变得更加简单:

fig, ax = plt.subplots() # this is the only "plt" fxn you need 99% of the time
x = [2, 57]
y = [12, 112]
ax.plot(x, y, '-')
ax.set_yscale('log')
ax.set_xscale('log')

在此处输入图像描述

于 2016-01-12T00:09:44.817 回答