Search
Notebook 2
import pandas as pd
import numpy as np

Some plot

ts = pd.Series(np.random.randn(1000),
                index=pd.date_range('1/1/2000', periods=1000))


ts = ts.cumsum()

ts.plot()
<matplotlib.axes._subplots.AxesSubplot at 0x7f49b8893dd0>

Some conclusions

  • Many great conclusions