Skip to content

Commit

Permalink
Update plotting_time.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AlxdrPolyakov authored Mar 6, 2024
1 parent 3bf293a commit e6a24f8
Showing 1 changed file with 3 additions and 3 deletions.
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 e6a24f8

Please sign in to comment.