gpt4 book ai didi

python - 如何在绘图中创建非线性轴

转载 作者:行者123 更新时间:2023-12-04 22:43:13 25 4
gpt4 key购买 nike

我正在使用 matplotlib 绘制一系列数据并得到如下结果

enter image description here

但我希望有一个非线性轴,如下所示。

enter image description here

我怎么能做出这样的情节?提前致谢。

最佳答案

您可以通过编写 plt.yscale('log') 将 y 轴设置为对数轴。
完整示例:

import matplotlib.pyplot as plt
example = [pow(2,i) for i in range(10)]
plt.plot(example)
plt.yscale('log')
plt.show()

关于python - 如何在绘图中创建非线性轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38989667/

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