csd {RandomWalker} | R Documentation |
Cumulative Standard Deviation
Description
A function to return the cumulative standard deviation of a vector.
Usage
csd(.x)
Arguments
.x |
A numeric vector |
Details
A function to return the cumulative standard deviation of a vector.
Value
A numeric vector. Note: The first entry will always be NaN.
Author(s)
Steven P. Sanderson II, MPH
See Also
Other Vector Function:
cgmean()
,
chmean()
,
ckurtosis()
,
cmean()
,
cmedian()
,
crange()
,
cskewness()
,
cvar()
,
euclidean_distance()
,
kurtosis_vec()
,
rw_range()
,
skewness_vec()
Examples
x <- mtcars$mpg
csd(x)
[Package RandomWalker version 0.3.0 Index]