mirror of https://github.com/commaai/openpilot.git
proposed should be orange
This commit is contained in:
parent
3a1c9e0f01
commit
360bb68547
|
@ -37,8 +37,8 @@ def plot(proposed, master, title, tmp):
|
||||||
proposed = list(proposed)
|
proposed = list(proposed)
|
||||||
master = list(master)
|
master = list(master)
|
||||||
fig, ax = plt.subplots()
|
fig, ax = plt.subplots()
|
||||||
ax.plot(proposed, label='PROPOSED')
|
|
||||||
ax.plot(master, label='MASTER')
|
ax.plot(master, label='MASTER')
|
||||||
|
ax.plot(proposed, label='PROPOSED')
|
||||||
plt.legend(loc='best')
|
plt.legend(loc='best')
|
||||||
plt.title(title)
|
plt.title(title)
|
||||||
plt.savefig(f'{tmp}/{title}.png')
|
plt.savefig(f'{tmp}/{title}.png')
|
||||||
|
|
Loading…
Reference in New Issue