-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Measurements with missing errors #125
Comments
Duplicate of #59? |
Yes, it is duplicate of #59 and of #62 , and it was decided that
But why should it be a problem if x = 1.0 ± 2.0
y = 1.0 ± missing
x + y
> 2.0 ± missing We do not make any assumptions for the user, they can always decide how to treat the |
That'd require changing the layout of the datastructure, with a likely significant impact on performance. |
It looks like the missing uncertainty can be emulated by some non-physical value, like |
Is it hard to make measurements support data with non-
missing
value, butmissing
uncertainty? Data with missing uncertainty is quite different from the data with zero uncertainty, so it is good to fistinguish these two cases.Looks like linear propagation of errors should be easy in this case: you just propagate
missing
.I've stumbled upon an actual example, where such option is required, while parsing the file with the data of half-lifes of different nuclear isotopes. I have noticed that normally half life has an uncertainty provided. However, for some of the isotopes, the uncertainty is simply missing.
The text was updated successfully, but these errors were encountered: