Pycharm does not show plot from the following code:
import pandas as pd import numpy as np import matplotlib as plt ts = pd.Series(np.random.randn(1000), in
I had the same problem. Check wether plt.isinteractive() is True. Setting it to 'False' helped for me.
plt.isinteractive()
plt.interactive(False)