Changes in benchmark/plot.py [d1c47c2:1f4fde5]
- File:
-
- 1 edited
-
benchmark/plot.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/plot.py
rd1c47c2 r1f4fde5 46 46 "Median Update Latency" : Field('us' , 0, True), 47 47 "Tail Update Latency" : Field('us' , 0, True), 48 "Update Ratio" : Field('%' , 0, False),49 48 } 50 49 … … 93 92 print("Making Plots") 94 93 95 for name, data in s eries.items():94 for name, data in sorted(series.items()): 96 95 _col = next(colors) 97 96 plt.scatter(data['x'], data['y'], color=_col, label=name, marker='x')
Note:
See TracChangeset
for help on using the changeset viewer.