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
One property need to set for pycharm.
import matplotlib.pyplot as plt plt.interactive(False) #need to set to False dataset.plot(kind='box', subplots=True, layout=(2,2), sharex=False, sharey=False) plt.show()