如何在 PyCharm 中显示绘图?

问题描述 投票:0回答:2

我在 pycharm 中可视化绘图时遇到问题,我还没有找到解决方案。 有谁知道如何在 PyCharm 中查看绘图?

import matplotlib.pyplot as plt
plt.style.use('ggplot')
df['Score'].value_counts().sort_index().plot(
    kind='bar',
    title='Count of Reviews by Stars',
    figsize=(10, 5)
)
python matplotlib plot pycharm
2个回答
0
投票

你能在你的剧本末尾加上

plt.show()
吗?

import matplotlib.pyplot as plt
plt.style.use('ggplot')
df['Score'].value_counts().sort_index().plot(kind='bar', title='Count of Reviews by Stars',
                                                      figsize=(10, 5))
plt.show()

0
投票

尝试将其放在脚本的顶部:

import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
© www.soinside.com 2019 - 2024. All rights reserved.