gpt4 book ai didi

python - 对数 y 轴使刻度标签消失

转载 作者:行者123 更新时间:2023-11-28 16:29:06 28 4
gpt4 key购买 nike

<分区>

将行 plt.yscale('log') 添加到我的简单绘图脚本中

import numpy as np
residuals = np.loadtxt('res_jacobi.txt', skiprows=1)

import matplotlib.pyplot as plt
fig = plt.figure()

steps = np.arange(0, len(residuals), 1)

plt.plot(steps, residuals, label='$S$')

plt.xlabel("Step",fontsize=20)
plt.ylabel("$S$",fontsize=20)
plt.ylim(0.95 * min(residuals), 1.05 * max(residuals))
plt.yscale('log')

plt.savefig('jacobi-res.pdf', bbox_inches='tight', transparent=True)

y 标签消失。

enter image description here enter image description here

我确信有一个简单的修复方法,但搜索没有找到。任何帮助将不胜感激。

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