Skip to content

Commit

Permalink
Merge pull request #40 from transferwise/colours
Browse files Browse the repository at this point in the history
changed colours for the time output
  • Loading branch information
AlxdrPolyakov authored Mar 6, 2024
2 parents 3bf293a + 87dc31e commit a02f1e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions notebooks/Finding interesting segments in time series.ipynb

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions wise_pizza/plotting_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def simple_ts_plot(
x=time,
y=totals * mult,
name=f"Actuals",
marker=dict(color="#ffc091"),
marker=dict(color="#9fe870"),
showlegend=showlegend and col == col_nums[0],
),
row=row_num,
Expand All @@ -394,7 +394,7 @@ def simple_ts_plot(
y=reg_totals * mult,
mode="lines",
name=f"Regression",
line=dict(color="#a0e1e1"),
line=dict(color="#485cc7"),
showlegend=showlegend and col == col_nums[0],
),
row=row_num,
Expand All @@ -411,7 +411,7 @@ def simple_ts_plot(
y=impact,
mode="lines",
name=f"Segment's reg contribution (Right axis)",
line=dict(color="#9fe870"),
line=dict(color="darkorange"),
showlegend=showlegend and col == col_nums[0],
),
row=row_num,
Expand Down

0 comments on commit a02f1e2

Please sign in to comment.