Skip to content

Instantly share code, notes, and snippets.

@airstrike
Created January 11, 2016 18:42
Show Gist options
  • Select an option

  • Save airstrike/267eabf2e191d300d5dc to your computer and use it in GitHub Desktop.

Select an option

Save airstrike/267eabf2e191d300d5dc to your computer and use it in GitHub Desktop.
stddev <- function(x) {
xbar <- mean(x)
n <- length(x)
return(sqrt(sum((x - xbar) ^ 2) / (n - 1)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment