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
Change import to:
import matplotlib.pyplot as plt
or use this line:
plt.pyplot.show()