Learn R Programming

matrixProfile (version 0.5.0)

std: Sample standard deviation

Description

Calculates sample standard deviation of input data.

Usage

std(x)

Arguments

x

A given input data.

Value

An sample standard deviation of given data.

Details

This function is slightly different from the base function sd.

References

https://en.wikipedia.org/wiki/Standard_deviation

Examples

Run this code
# NOT RUN {
x <- 1:10
sd(x) # for comparison
std(x) # see difference
# }

Run the code above in your browser using DataLab