我知道在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))
你可以在你的脚本末尾添加 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()