gpt4 book ai didi

python - matplotlib pyplot 不显示轴刻度或标签

转载 作者:行者123 更新时间:2023-12-04 14:17:08 25 4
gpt4 key购买 nike

当我运行以下代码时:

import matplotlib
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()

在 Jupyter 笔记本实验室中,我得到一个只有对角线的图像,否则为空白。没有轴刻度或标签等。这与 the tutorial 形成对比。它运行相同的代码并显示带有轴的图像。知道我的设置可能有什么问题吗?

我检查了 matplotlib 版本,它是 2.2.3。

我正在运行 python 2.7.11 和 IPython 5.8.0。

最佳答案

事实证明,这个问题是由我的 Jupyter 笔记本设置为深色背景引起的。解决方法是添加这行代码:

plt.style.use('dark_background')

关于python - matplotlib pyplot 不显示轴刻度或标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59142166/

25 4 0