Skip to content

Instantly share code, notes, and snippets.

@bradurani
Created October 3, 2013 04:31
Show Gist options
  • Save bradurani/6805015 to your computer and use it in GitHub Desktop.
Save bradurani/6805015 to your computer and use it in GitHub Desktop.
Variance Formula
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