Closed
Description
As a user, if uncertainties have been published by the underlying device, I would like plots & fits to use them.
This issue depends on all of:
Which must be completed first.
Acceptance criteria:
- Uncertainties, if available, are plotted as error bars on plots.
- We probably want a
LivePlotWithUncertainty
wrapper on top ofLivePlot
for this. matplotlib
can already handle plots with error bars, so this is largely "pass data through to matplotlib in the right places".
- We probably want a
- Uncertainties, if available, are used in fits.
lmfit
takesweights
for each point which can be used to implement this - so this is largely "pass data through to lmfit in the right places".