我在 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)
)
你能在你的剧本末尾加上
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()
尝试将其放在脚本的顶部:
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt