Description Usage Arguments Value Examples
Compute standard error of the mean for an input vector
1 | ComputeSEM(x)
|
x |
Input vector (any NA will be ignored). |
Standard error of the mean (SEM) of x
.
1 2 3 4 5 6 7 | ## random vector:
ComputeSEM(rnorm(100))
## with missing entries:
x <- runif(1000)*5
x[sample(1000, 50)] <- NA
ComputeSEM(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.