Skip to content

Commit 11bfe08

Browse files
author
vikram-narayan
committed
MAINT: move plot colors to utils
1 parent afcaa83 commit 11bfe08

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

pyfolio/perf_attrib.py

+3-14
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,7 @@
1919

2020
import matplotlib.pyplot as plt
2121
from pyfolio.pos import get_percent_alloc
22-
from pyfolio.utils import print_table, set_legend_location
23-
24-
# 31 visually distinct colors
25-
# http://phrogz.net/css/distinct-colors.html
26-
COLORS = [
27-
'#f23d3d', '#828c23', '#698c83', '#594080', '#994d4d',
28-
'#206380', '#dd39e6', '#cc9999', '#7c8060', '#66adcc',
29-
'#6c7dd9', '#8a698c', '#7f6340', '#66cc7a', '#a3abd9',
30-
'#d9c0a3', '#bfffcc', '#542699', '#b35986', '#d4e639',
31-
'#b380ff', '#e0e6ac', '#a253a6', '#418020', '#ff409f',
32-
'#ffa940', '#83ff40', '#3d58f2', '#e3ace6', '#d9a86c',
33-
'#2db391'
34-
]
22+
from pyfolio.utils import print_table, set_legend_location, COLORS
3523

3624

3725
def perf_attrib(returns, positions, factor_returns, factor_loadings,
@@ -109,12 +97,13 @@ def perf_attrib(returns, positions, factor_returns, factor_loadings,
10997
2017-01-02 -0.003194 -0.400786 -0.403980 -0.403980
11098
"""
11199
if pos_in_dollars:
112-
# convert holdings to percentages, and convert positions to long format
100+
# convert holdings to percentages
113101
positions = get_percent_alloc(positions)
114102

115103
# remove cash after normalizing positions
116104
positions = positions.drop('cash', axis='columns')
117105

106+
# convert positions to long format
118107
positions = positions.stack()
119108
positions.index = positions.index.set_names(['dt', 'ticker'])
120109

pyfolio/utils.py

+12
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,18 @@
5252
"use e.g. empyrical.utils.get_symbol_rets() instead "
5353
"of pyfolio.utils.get_symbol_rets()")
5454

55+
# 31 visually distinct colors
56+
# http://phrogz.net/css/distinct-colors.html
57+
COLORS = [
58+
'#f23d3d', '#828c23', '#698c83', '#594080', '#994d4d',
59+
'#206380', '#dd39e6', '#cc9999', '#7c8060', '#66adcc',
60+
'#6c7dd9', '#8a698c', '#7f6340', '#66cc7a', '#a3abd9',
61+
'#d9c0a3', '#bfffcc', '#542699', '#b35986', '#d4e639',
62+
'#b380ff', '#e0e6ac', '#a253a6', '#418020', '#ff409f',
63+
'#ffa940', '#83ff40', '#3d58f2', '#e3ace6', '#d9a86c',
64+
'#2db391'
65+
]
66+
5567

5668
def one_dec_places(x, pos):
5769
"""

0 commit comments

Comments
 (0)