udacity/aitnd-issues

Lesson 8: Momentum Trading: 11.Quiz: test returns for statistical significance

Opened this issue · 0 comments

The following function is Deprecated in pandas 0.21.0:

net_returns = pd.Series.from_csv(filename, header=0)

It should be replaced with:

net_returns = pd.read_csv(filename, squeeze=True, index_col=0)