Ignore:
Timestamp:
Jun 14, 2023, 4:55:15 PM (16 months ago)
Author:
caparsons <caparson@…>
Branches:
master
Children:
a0bd9a2, d144c26
Parents:
80fc78f
Message:

fixed marker issue in data plotting scripts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/colby_parsons_MMAth/benchmarks/actors/plotData.py

    r80fc78f r60f4919  
    166166                    for idx, arr in enumerate(data):
    167167                        plt.errorbar( procs, arr, [bars[idx][0], bars[idx][1]], capsize=2, marker=next(marker) )
     168                    marker = itertools.cycle(('o', 's', 'D', 'x', 'p', '^', 'h', '*', 'v' ))
    168169                    if currBench == Bench.Executor or currBench == Bench.Matrix or currBench == Bench.Balance_One or currBench == Bench.Repeat:
    169170                        plt.yscale("log")
Note: See TracChangeset for help on using the changeset viewer.