proposed should be orange

This commit is contained in:
Shane Smiskol 2024-11-14 23:24:07 -08:00
parent 3a1c9e0f01
commit 360bb68547
1 changed files with 1 additions and 1 deletions

View File

@ -37,8 +37,8 @@ def plot(proposed, master, title, tmp):
proposed = list(proposed)
master = list(master)
fig, ax = plt.subplots()
ax.plot(proposed, label='PROPOSED')
ax.plot(master, label='MASTER')
ax.plot(proposed, label='PROPOSED')
plt.legend(loc='best')
plt.title(title)
plt.savefig(f'{tmp}/{title}.png')