Reppo for internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
488 B

  1. \name{sem}
  2. \alias{sem}
  3. \title{sem}
  4. \usage{
  5. sem(x, na.rm=T)
  6. }
  7. \arguments{
  8. \item{x}{A numeric vector or an R object but not a factor coercible to numeric by as.double(x).}
  9. \item{na.rm}{A logical value indicating whether NA values should be stripped before the computation proceeds.}
  10. }
  11. \description{
  12. This function computes the Standard Error of the Mean of the values in x. If na.rm is TRUE then missing values are removed before computation proceeds.
  13. }
  14. \examples{
  15. v<-rnorm(10)
  16. sem(v)
  17. }