| 183 | plots = set(getattr(row, multiplePlots) for row in data) |
| 184 | |
| 185 | class DataForOnePlot: |
| 186 | def __init__(self, inlabel, inxdata, inydata): |
| 187 | self.label = inlabel |
| 188 | self.xdata = inxdata |
| 189 | self.ydata = inydata |
| 190 | |
| 191 | dataForAllPlots=[] |
| 192 | for plot in plots: |