vote up 0 vote down star

I'm having a difficult time understand what these statistics functions do and how they work. I'm having an even more difficult time understanding how stdev works vs stdevp and the var equivelant. Can someone please break these down into dumb for me?

flag

65% accept rate
1  
Do you not understand what these functions do or are you unsure as to what a standard deviation or variant is? In other words, do you need help with T-SQL or with statistics (or both)? – Michael Todd Sep 21 at 16:21
I need to understand both the T-SQL and statistics sides – James Alexander Sep 23 at 14:30

1 Answer

vote up 1 vote down

STDDEV is used for computing the standard deviation of a data set. STDDEVP is used to compute the standard deviation of a population from which your data is a sample.

If your input is the entire population, then the population standard deviation is computed with STDDEV. More typically, your data set is a sample of a much larger population. In this case the standard deviation of the data set would not represent the true standard deviation of the population since it will usually be biased too low. A better estimate for the standard deviation of the population based on a sample is obtained with STDDEVP.

The situation with VAR and VARP is the same.

For a more thorough discussion of the topic, please see this Wikipedia article.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.