Created
October 3, 2013 04:31
-
-
Save bradurani/6805015 to your computer and use it in GitHub Desktop.
Variance Formula
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Variance = SD^2 | |
SD^2 = [SUM((X-M)^2)]/N | |
Square the deviation so it doesn't sum to zero | |
SQRT(SD^2) = SD | |
SS = SUM of Squares = SUM((X-M)^2 | |
MS = Mean Squares = [SUM((X-M)^2)]/N | |
For inferential stats use: | |
[SUM((X-M)^2)]/N-1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment