sd_pop | R Documentation |
Population standard deviation
sd_pop(x, na.rm = FALSE)
x |
A numeric vector, matrix or data frame. |
na.rm |
A logical value indicating whether missing values should be removed or not (default). |
The population standard deviation and sample standard deviation, implemented in stats
package, differ in the denominator.
The value of denominator in the formula for standard deviation in case of population data is n
, while it is n-1
for sample data.
The population standard deviation.
sd
.
Other Utils:
as_ANN_matrix()
,
degree()
,
distance()
,
list_as_numeric()
,
probability()
,
radian()
,
random_seed()
,
re.factor()
,
similarity()
,
var_pop()
,
vector_as_ANN_matrix()
,
vector_as_numeric()
x <- sample(1000)
sd_pop(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.