Changeset 1f4fde5


Ignore:
Timestamp:
May 4, 2022, 12:57:35 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
Children:
c899175
Parents:
8197ca5
Message:

Plot now sorts series

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/plot.py

    r8197ca5 r1f4fde5  
    9292        print("Making Plots")
    9393
    94         for name, data in series.items():
     94        for name, data in sorted(series.items()):
    9595                _col = next(colors)
    9696                plt.scatter(data['x'], data['y'], color=_col, label=name, marker='x')
Note: See TracChangeset for help on using the changeset viewer.