Skip to content

Commit 8f6e65a

Browse files
committed
Remove lines between faint markers in historical plots
1 parent 3f23619 commit 8f6e65a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/lc/plot_hist_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def plot_hist_times(test_name, bench, clusters, region, metric, savefile=None):
3636
figs, axes = plt.subplots(num_clusters, 1, sharex=True)
3737
if (num_clusters == 1):
3838
axes = [axes]
39-
marker_style = dict(marker="o", alpha=0.5, markersize=5, fillstyle="none")
39+
marker_style = dict(alpha=0.5, markersize=5, fillstyle="none")
4040
for i, cluster in enumerate(clusters):
4141
lgd_tups = []
4242
lgd_names = []
@@ -65,7 +65,7 @@ def plot_hist_times(test_name, bench, clusters, region, metric, savefile=None):
6565
lgd_entry = f"{cluster} {config_shorthand[install_config]}"
6666
p1, = ax.plot(dates, avgtimes)
6767
p2 = ax.fill_between(dates, lotimes, hitimes, color=p1.get_color(), alpha=0.2)
68-
p3, = ax.plot(alldates, alltimes, color=p1.get_color(), **marker_style)
68+
p3, = ax.plot(alldates, alltimes, "o", color=p1.get_color(), **marker_style)
6969
lgd_tups.append((p1, p2, p3))
7070
lgd_names.append(lgd_entry)
7171
ax.xaxis.set_major_formatter(mdate.DateFormatter('%Y-%b'))

0 commit comments

Comments
 (0)