(test, kind, zorder)
| 60 | plt.legend(kinds, loc=2) |
| 61 | |
| 62 | def kind_plot(test, kind, zorder): |
| 63 | sizes = sorted(data[test][kind].keys()) |
| 64 | # Timer isn't any better than micro-second resolution. |
| 65 | yvalues = [max(1e-6, data[test][kind][size][5]) for size in sizes] |
| 66 | plt.plot(sizes, yvalues, marker='s', zorder=zorder) |
| 67 | |
| 68 | if __name__ == '__main__': |
| 69 | parser = argparse.ArgumentParser(description='Plotting') |