Strange questions from a nitpicker ... ;p
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
I think we'd need more context. Is the measurement expected to remain within some range? Do measurements expire after some time elapses?
-
I think we'd need more context. Is the measurement expected to remain within some range? Do measurements expire after some time elapses?
-
Simply measurements 1...N. No restrictions. The question is: If I have only one measurement, should I display 1.) A mean Value? 2.) A Standard Deviation (which would be 0 for one measurement) Thanks
Maybe display the latest value and allow the user to drill down to see more of a trend (if available)?
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
0x01AA wrote:
b.)
What about NA? (not applicable)
-
Simply measurements 1...N. No restrictions. The question is: If I have only one measurement, should I display 1.) A mean Value? 2.) A Standard Deviation (which would be 0 for one measurement) Thanks
1. For one measurement current value and mean value are the same. No nitpicking here. 2. Standard deviation, that's where nitpicking begins. What you actually calculate is an estimator of the standard deviation and, if you want an unbiased estimator, you need to divide the sum of squares by N-1. That means you cannot display anything until you have at least two measurements.
Mircea
-
0x01AA wrote:
b.)
What about NA? (not applicable)
It's also fun when a device displays "NaN". :doh: Added: https://www.codeproject.com/Uploads/Membership/Uploads/2587207/NaN-NaN-NaN.jpg[^]
-
It's also fun when a device displays "NaN". :doh: Added: https://www.codeproject.com/Uploads/Membership/Uploads/2587207/NaN-NaN-NaN.jpg[^]
-
1. For one measurement current value and mean value are the same. No nitpicking here. 2. Standard deviation, that's where nitpicking begins. What you actually calculate is an estimator of the standard deviation and, if you want an unbiased estimator, you need to divide the sum of squares by N-1. That means you cannot display anything until you have at least two measurements.
Mircea
My idea is for _one_ measurement I will display neither mean nor deviation. But I have a strange feeling this is only nitpicking and will confuse maybe the users. On the other hand, somebody who really understand deviation should understand it :) If not, display of deviation and mean does not make sense anyway, I think :-D
-
0x01AA wrote:
b.)
What about NA? (not applicable)
-
My idea is for _one_ measurement I will display neither mean nor deviation. But I have a strange feeling this is only nitpicking and will confuse maybe the users. On the other hand, somebody who really understand deviation should understand it :) If not, display of deviation and mean does not make sense anyway, I think :-D
0x01AA wrote:
My idea is for _one_ measurement I will display neither mean nor deviation.
The more I think about it, the more I tend to agree with you.
Mircea
-
0x01AA wrote:
My idea is for _one_ measurement I will display neither mean nor deviation.
The more I think about it, the more I tend to agree with you.
Mircea
-
Simply measurements 1...N. No restrictions. The question is: If I have only one measurement, should I display 1.) A mean Value? 2.) A Standard Deviation (which would be 0 for one measurement) Thanks
The Mean is defined for N = 1, therefore it should be displayed. The Corrected Standard Deviation is not defined for N = 1. It is defined as: xavg = sum(xi)/N xstdev = sqrt(sum((xi-xavg)2)/(N-1)) The formula for Standard Deviation with N is used when one is calculating the Standard deviation of an entire population, not just of a sample. I hope you've been out-nitpicked. :)
Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.
-
The Mean is defined for N = 1, therefore it should be displayed. The Corrected Standard Deviation is not defined for N = 1. It is defined as: xavg = sum(xi)/N xstdev = sqrt(sum((xi-xavg)2)/(N-1)) The formula for Standard Deviation with N is used when one is calculating the Standard deviation of an entire population, not just of a sample. I hope you've been out-nitpicked. :)
Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
a and b are easy like you said, just display the value of the single measurement. c now, how about a message like "Not applicable, only one measurement recorded." You don't show blank and you explain why they aren't getting a value.
I’ve given up trying to be calm. However, I am open to feeling slightly less agitated. I’m begging you for the benefit of everyone, don’t be STUPID.
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
Value has no meaning without time. 1) Never had a value. 2) last value at xx:xx:xx 3) etc. Transparency and visibility lets me sleep at night. (Also ... an early warning system for the attendant).
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
Perhaps it will be helpful to the users to see displayed the number of said measurements.
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
I see two alternative approaches
- Always show current measurement value, but show statistical values only when statistics is meaningful (you have a 'fair' number of samples).
or
- Always show all values, however, at first measure: show the current value, omit or show the mean value (equal to current value) and omit the standard deviation.
my two cents.
"In testa che avete, Signor di Ceprano?" -- Rigoletto
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)
Mathematicians define the (so called "Arithmetic") Mean as "Sum of all values divided by Count of all values" - see e.g. Arithmetic mean - Wikipedia[^]. Thus, the mathematically defined (Arithmetic) Mean for a single value is that single value. It does not at all matter whether you think whether this "makes sense" :-) However, did whoever gave you this specification ("need to show ... Mean Value ...") specify that he/she actually - meant you to use the arithmetic mean? (most probably yes; but asking back is not wrong - might only confuse the analyst who maybe doesn't even know that there are many other "Means"); - wanted to help the user also in such boundary cases? Maybe the analyst would even say "Oh, but for less than a handful of values that mean doesn't make any sense - there will always be 100 or 1000s of values, in practice"; then, you two should talk for some time what's the actual reason for showing those values ... That's what I think your "feeling" is about - you question the business value of showing the Mean (and Deviation) in boundary cases - which does matter. :) H.M.
-
I need to show some value for continous measurement(s): a.) Current Measurement Value b.) Mean Value of the measurements c.) Standard deviation of the measurements c.) In case there is no or only one measurement... From my point of view, I should not show any value here. Not even 0 b.) I have my doubts. The mean value is the current value. Or should I also show blank? a.) Is easy. As soon one has measured it is easy to show current valu Especally b.) drives me crazy Any suggestions/thoughts? Thank you very much in advance ;)