sample.sd {LearningStats} | R Documentation |
Sample Standard Deviation
Description
sample.sd
computes the sample standard deviation of a sample x
.
Usage
sample.sd(x)
Arguments
x |
a numeric vector containing the sample. |
Details
Given a sample of a random variable, the sample standard deviation
can be computed as
.
Value
A single numerical value corresponding with the sample standard deviation.
Examples
x=rnorm(20)
sample.sd(x)
[Package LearningStats version 0.1.0 Index]