I want to plot multiple benchmarks, each on a separate plot. Here's my code:
for benchmark in benchmarks:
readFile = open(benchmark+'.txt')
text = readFile.read()
x = re.findall(r"(\d+)",text)
x = [int(i) for i in liveRatio]
pylab.plot(x)
F = pylab.gcf()
F.savefig('benchmark',dpi=200)
The code plots all the data on the same plot. But, I want individual separate plots for each benchmark.