Standard Error of the Mean
sem.RdTakes a vector and computes its standard error of the mean.
Examples
x <- c(1,2,2,NA,3);
sem(x);
#> [1] 0.4082483
sem(x, na.rm = FALSE);
#> [1] NA
sem.RdTakes a vector and computes its standard error of the mean.
x <- c(1,2,2,NA,3);
sem(x);
#> [1] 0.4082483
sem(x, na.rm = FALSE);
#> [1] NA