mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00
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:
parent
a47d91b60d
commit
824eebab8b
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in a new issue