Skip to content

Commit

Permalink
changed colours for the time output
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Polyakov committed Mar 6, 2024
1 parent 3bf293a commit 87dc31e
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 87dc31e

Please sign in to comment.