I am trying plot many datasets (1500) in a single plot and am running into an I/O error due to too many open files.
The code is as follows:
for row in dataSet:
plots.append(Gnuplot.PlotItems.Data(eval(row[2])))
g.plot(*plots)
g.hardcopy(filename='output.ps')
Has anyone found a workaround for this issue?
Thanks in advance
|