Some Computation

This is a sample for testing notebook rendering.


In [1]:
%matplotlib inline

import pandas as pd
import numpy as np
import matplotlib

from matplotlib import pyplot as plt
import seaborn as sns

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

df = pd.DataFrame(np.random.randn(1000, 4), index=ts.index,
                  columns=['A', 'B', 'C', 'D'])
df = df.cumsum()
plt.figure(); df.plot(); plt.legend(loc='best')


Out[1]:
<matplotlib.legend.Legend at 0x7fa25f2a3cf8>
<matplotlib.figure.Figure at 0x7fa2947c5b70>