ste_mean | R Documentation |
Ported from 'rutabaga'
package, calculates standard error
of mean. The sample size is determined by number of none-NA
numbers
by default
ste_mean(x, na.rm = FALSE, na_as_zero = na.rm, ...)
## Default S3 method:
ste_mean(x, na.rm = FALSE, na_as_zero = na.rm, ...)
x |
R object |
na.rm |
whether to remove |
na_as_zero |
whether convert |
... |
passed to other methods |
A numerical number that is the standard error of the mean
mean_se
x <- rnorm(100)
ste_mean(x)
# internal implementation
identical(ste_mean(x), sd(x) / sqrt(100))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.