What's the correct term for "number of std deviations" away from a mean - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:43:52Z http://stackoverflow.com/feeds/question/79476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean 3 What's the correct term for "number of std deviations" away from a mean Daniel H 2008-09-17T02:56:28Z 2008-09-17T03:25:03Z <p>I've computed the mean &amp; variance of a set of values, and I want to pass along the value that represents the # of std deviations away from mean for each number in the set. Is there a better term for this, or should I just call it num_of_std_devs_from_mean ...</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79484#79484 1 Answer by dbrien for What's the correct term for "number of std deviations" away from a mean dbrien 2008-09-17T02:58:13Z 2008-09-17T02:58:13Z <p>That is normalizing your values. You could just refer to it as the normalized value. Maybe norm_val would be more appropriate.</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79486#79486 4 Answer by etchasketch for What's the correct term for "number of std deviations" away from a mean etchasketch 2008-09-17T02:58:34Z 2008-09-17T02:58:34Z <p>The standard deviation is usually denoted with the letter σ (sigma). Personally, I think more people will understand what you mean if you do say number of standard deviations.</p> <p>As for a variable name, as long as you comment the declaration you could shorten it to std_devs.</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79492#79492 3 Answer by Kevin Little for What's the correct term for "number of std deviations" away from a mean Kevin Little 2008-09-17T02:59:15Z 2008-09-17T02:59:15Z <p><a href="http://en.wikipedia.org/wiki/Standard_deviation" rel="nofollow">sigma</a> is what you want, I think.</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79509#79509 0 Answer by mbowcock for What's the correct term for "number of std deviations" away from a mean mbowcock 2008-09-17T03:00:55Z 2008-09-17T03:00:55Z <p>I've always heard it as number of standard deviations</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79549#79549 5 Answer by ckarras for What's the correct term for "number of std deviations" away from a mean ckarras 2008-09-17T03:08:08Z 2008-09-17T03:08:08Z <p>Some suggestions here: <a href="http://en.wikipedia.org/wiki/Standard_score" rel="nofollow">Standard score</a> (z-value, z-score, normal score)</p> <p>but "sigma" or "stdev_distance" would probably be clearer</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79630#79630 0 Answer by Kevin Haines for What's the correct term for "number of std deviations" away from a mean Kevin Haines 2008-09-17T03:25:03Z 2008-09-17T03:25:03Z <p><a href="http://en.wikipedia.org/wiki/Deviation_(statistics)" rel="nofollow">Deviation</a> may be what you're after. Deviation is the distance between a data point and the mean.</p>