mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00
Fix time units in plotted charts
Bug: webrtc:10138 Change-Id: I057caa8fadb41ff09733b2bf435cee2a1f2c70c7 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/152822 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29183}
This commit is contained in:
parent
70dd16509d
commit
38739278ab
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ def main():
|
||||||
y_values.append(sample['value'])
|
y_values.append(sample['value'])
|
||||||
|
|
||||||
plt.ylabel('%s (%s)' % (metric[GRAPH_NAME], metric[UNITS]))
|
plt.ylabel('%s (%s)' % (metric[GRAPH_NAME], metric[UNITS]))
|
||||||
plt.xlabel('time (ms)')
|
plt.xlabel('time (s)')
|
||||||
plt.title(metric[GRAPH_NAME])
|
plt.title(metric[GRAPH_NAME])
|
||||||
plt.plot(x_values, y_values)
|
plt.plot(x_values, y_values)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue