Improve points visualization in metrics_plotter.

Bug: None
Change-Id: Id86c67ae9e1690817b98d8f62db0c9d05911a58a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/231680
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#34963}
This commit is contained in:
Mirko Bonadei 2021-09-09 20:20:10 +02:00 committed by WebRTC LUCI CQ
parent a47d91b60d
commit 824eebab8b
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@ def main():
plt.ylabel('%s (%s)' % (metric[GRAPH_NAME], metric[UNITS]))
plt.xlabel('time (s)')
plt.title(metric[GRAPH_NAME])
plt.plot(x_values, y_values)
plt.plot(x_values, y_values, marker='x', markersize=3,
markeredgecolor='red')
plt.show()