54
54
matches = [x for x in records if x.variant==variant and x.bytes <= top]
55
55
matches.sort(key=lambda x: x.bytes)
64
80
pylab.plot(X, Y, c=colour)
65
pylab.scatter(X, Y, c=colour, label=variant, edgecolors='none')
82
pylab.errorbar(X, Y, yerr=Yerr, c=colour, label=variant, fmt='o')
84
pylab.scatter(X, Y, c=colour, label=variant, edgecolors='none')
67
86
pylab.legend(loc='upper left', ncol=3, prop={'size': 'small'})