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:
R
:devtools::install_github("AndrewLim1990/stdDev")
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.