What's the correct term for "number of std deviations" away from a mean - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T12:43:52Zhttp://stackoverflow.com/feeds/question/79476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean3What's the correct term for "number of std deviations" away from a meanDaniel H2008-09-17T02:56:28Z2008-09-17T03:25:03Z
<p>I've computed the mean & 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#794841Answer by dbrien for What's the correct term for "number of std deviations" away from a meandbrien2008-09-17T02:58:13Z2008-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#794864Answer by etchasketch for What's the correct term for "number of std deviations" away from a meanetchasketch2008-09-17T02:58:34Z2008-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#794923Answer by Kevin Little for What's the correct term for "number of std deviations" away from a meanKevin Little2008-09-17T02:59:15Z2008-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#795090Answer by mbowcock for What's the correct term for "number of std deviations" away from a meanmbowcock2008-09-17T03:00:55Z2008-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#795495Answer by ckarras for What's the correct term for "number of std deviations" away from a meanckarras2008-09-17T03:08:08Z2008-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#796300Answer by Kevin Haines for What's the correct term for "number of std deviations" away from a meanKevin Haines2008-09-17T03:25:03Z2008-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>