plot_xy: un-randomize the fit plot

This commit is contained in:
Robert Jördens 2016-04-08 01:17:22 +08:00
parent d6beec1a55
commit 3e6a8a20c3
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ class XYPlot(pyqtgraph.PlotWidget):
errbars = pg.ErrorBarItem(x=np.array(x), y=np.array(y), height=error)
self.addItem(errbars)
if fit is not None:
self.plot(x, fit)
xi = np.argsort(x)
self.plot(x[xi], fit[xi])
def main():