PyCharm 中的绘图

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

我知道在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
1个回答
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()
© www.soinside.com 2019 - 2024. All rights reserved.