Skip to content

Commit

Permalink
graph lookmaxxing
Browse files Browse the repository at this point in the history
  • Loading branch information
AYadrov committed Oct 29, 2024
1 parent bcd6c5e commit 805b571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/cnt_per_iters_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def plot_cnt_per_iters(outcomes, args):
rival = rival.drop(['baseline_precision'], axis=1)
rival = rival.groupby(['rival_iter'], as_index=False).sum()

ax.bar(np.arange(len(baseline)) + 0.9, baseline['number_of_points'], color="green", alpha=1, width=0.4, label='baseline', hatch='/')
ax.bar(np.arange(len(rival)) + 1.1, rival['number_of_points'], color="red", alpha=0.7, width=0.4, label='reval')
ax.bar(np.arange(len(baseline)) + 0.925, baseline['number_of_points'], color="green", alpha=1, width=0.3, label='baseline', hatch='/')
ax.bar(np.arange(len(rival)) + 1.075, rival['number_of_points'], color="red", alpha=0.7, width=0.3, label='reval')

ax.legend()
ax.set_xlabel("Iteration")
Expand Down

0 comments on commit 805b571

Please sign in to comment.