README.md

Standard Deviation

Build Status

This package contains functions in R that calculate commonly used statistics from a list of numbers. As of yet, this package contains code to compute the following:

To install please execute the following in R:

devtools::install_github("AndrewLim1990/stdDev")

How to use:

Usage: standard_deviation(x) Input: x: a vector of doubles Output: standard deviation of the array x

Example:

x<-c(1,2,3,4)
standard_deviation(x)

--

Usage: standarderror(x) Input: x: a vector of doubles Output: standard error of the array x

Example:

x<-c(1,2,3,4)
standarderror(x)


meghanallen/DSCI_524_2017W2_R documentation built on May 27, 2019, 2:01 a.m.