Skip to content

Commit 8a73d48

Browse files
committed
Merge pull request #262 from quantopian/refactor_timeseries.py
Refactor timeseries.py
2 parents fa58649 + 596dd86 commit 8a73d48

File tree

5 files changed

+222
-500
lines changed

5 files changed

+222
-500
lines changed

pyfolio/plotting.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
from __future__ import division
16+
from collections import OrderedDict
1617

1718
import pandas as pd
1819
import numpy as np
@@ -510,13 +511,13 @@ def show_perf_stats(returns, factor_returns, live_start_date=None):
510511
perf_stats = np.round(timeseries.perf_stats(
511512
returns_backtest,
512513
factor_returns=factor_returns), 2)
513-
perf_stats.columns = ['Backtest']
514514

515515
if live_start_date is not None:
516-
perf_stats = perf_stats.join(perf_stats_live,
517-
how='inner')
518-
perf_stats = perf_stats.join(perf_stats_all,
519-
how='inner')
516+
perf_stats = pd.DataFrame(OrderedDict([
517+
('Backtest', perf_stats),
518+
('Out of sample', perf_stats_live),
519+
('All history', perf_stats_all),
520+
]))
520521

521522
print(perf_stats)
522523

pyfolio/tears.py

-28
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,6 @@ def create_returns_tear_sheet(returns, live_start_date=None,
263263
ax_monthly_dist = plt.subplot(gs[8, 2])
264264
ax_return_quantiles = plt.subplot(gs[9, :])
265265

266-
if live_start_date is not None:
267-
ax_daily_similarity_scale = plt.subplot(gs[10, 0])
268-
ax_daily_similarity_no_var = plt.subplot(gs[10, 1])
269-
ax_daily_similarity_no_var_no_mean = plt.subplot(gs[10, 2])
270-
271266
plotting.plot_rolling_returns(
272267
returns,
273268
factor_returns=benchmark_rets,
@@ -322,29 +317,6 @@ def create_returns_tear_sheet(returns, live_start_date=None,
322317
df_monthly,
323318
ax=ax_return_quantiles)
324319

325-
if live_start_date is not None:
326-
returns_backtest = returns[returns.index < live_start_date]
327-
returns_live = returns[returns.index > live_start_date]
328-
329-
plotting.plot_daily_returns_similarity(
330-
returns_backtest,
331-
returns_live,
332-
title='Daily Returns Similarity',
333-
ax=ax_daily_similarity_scale)
334-
plotting.plot_daily_returns_similarity(
335-
returns_backtest,
336-
returns_live,
337-
scale_kws={'with_std': False},
338-
title='Similarity without\nvariance normalization',
339-
ax=ax_daily_similarity_no_var)
340-
plotting.plot_daily_returns_similarity(
341-
returns_backtest,
342-
returns_live,
343-
scale_kws={'with_std': False,
344-
'with_mean': False},
345-
title='Similarity without variance\nand mean normalization',
346-
ax=ax_daily_similarity_no_var_no_mean)
347-
348320
for ax in fig.axes:
349321
plt.setp(ax.get_xticklabels(), visible=True)
350322

pyfolio/tests/test_timeseries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def test_sharpe_2(self, returns, rolling_sharpe_window, expected):
289289
returns, rolling_sharpe_window).values.tolist()), expected)
290290

291291
@parameterized.expand([
292-
(simple_rets, 0.010766923838471554)
292+
(simple_rets, 0.10376378866671222)
293293
])
294294
def test_stability_of_timeseries(self, returns, expected):
295295
self.assertAlmostEqual(

0 commit comments

Comments
 (0)