为什么matplotlib中的子图不起作用?

9o685dep  于 2023-02-19  发布在  其他
关注(0)|答案(1)|浏览(139)

我有一个python-script,用来测试matplotlib的功能(还有其他功能)。这个脚本在终端和Python控制台中工作,但在PyCharm(Linux)或Visual Studio Code(Windows)中执行的保存文件中不工作。我确实在两个环境中得到了相同的错误消息,关于 subplots missing,se screen dump:

matplotlib代码是从matplotlibs网站复制的示例代码。我遗漏了什么?

mlmc2os5

mlmc2os51#

您的代码与示例代码之间有一点小差异:

import matplotlib.pyplot as plt # import in the example
import matplotlib as plt # your code

只是需要修正你的导入。

相关问题