Skip to content

Commit

Permalink
too much cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dokester committed Nov 25, 2021
1 parent f602809 commit e987334
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions BayesicFitting/source/Plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ def plotSampleList( sl, xdata, ydata, errors=None, npt=10000,
ax0.errorbar( xdata, ydata, yerr=errors, fmt='k.' )

# plot average in green
xlow = min( xdata )
xhigh = max( xdata )
xs = numpy.linspace( xlow, xhigh, 201 )
ax0.plot( xs, sl.average( xs ), 'g-' )

Expand Down

0 comments on commit e987334

Please sign in to comment.