gpt4 book ai didi

Python:LogLog 图与线性图相结合

转载 作者:行者123 更新时间:2023-11-30 23:01:54 28 4
gpt4 key购买 nike

我用 Python 生成了以下对数图: enter image description here

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

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

在 Matlab 中,您只需生成如上所述的双对数图,然后使用简单的绘图命令,使用一对数据点作为输入,两个图就会合并为一个。 Python/Matplotlib 中有类似的方法吗?我尝试使用:

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

但没有成功...基本上,我想要这个图(在 Matlab 中生成): enter image description here

最佳答案

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

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

enter image description here

关于Python:LogLog 图与线性图相结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34733367/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com