I have a problem visualizing plots in pycharm, and I haven't found a solution yet. Does anyone know how to view plots in 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)
)