数据为here。 我想在这个图中添加一系列在这对数据值之间开始和结束的直线:
[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.