Skip to content

Commit

Permalink
Include lue lines to orange dot
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Jul 23, 2021
1 parent 36755dc commit 823bf70
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions conbench/app/_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,11 @@ def simple_bar_plot(benchmarks, height=400, width=400):

def time_series_plot(history, benchmark_id, height=250, width=1000):
unit = get_display_unit(history[0]["unit"])
others = [h for h in history if h["benchmark_id"] != benchmark_id]
current = [h for h in history if h["benchmark_id"] == benchmark_id]

times = [o["mean"] for o in others]
commits = [o["message"] for o in others]
dates = [dateutil.parser.isoparse(o["timestamp"]) for o in others]
times = [h["mean"] for h in history]
commits = [h["message"] for h in history]
dates = [dateutil.parser.isoparse(h["timestamp"]) for h in history]

times_x = [c["mean"] for c in current]
commits_x = [c["message"] for c in current]
Expand Down

0 comments on commit 823bf70

Please sign in to comment.