(self, run, count, duration)
| 281 | self.durations = durations |
| 282 | |
| 283 | def add_data_point(self, run, count, duration): |
| 284 | self.counts[run] = count |
| 285 | self.durations[run] = duration |
| 286 | |
| 287 | def prepare(self, stdev=False): |
| 288 | if len(self.durations) > 1: |