File: std.error.Rd

package info (click to toggle)
r-cran-plotrix 3.8-1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,580 kB
  • sloc: makefile: 6
file content (22 lines) | stat: -rwxr-xr-x 487 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
\name{std.error}
\alias{std.error}
\title{Calculate standard error of the mean}
\description{
 Calculates the standard error of the mean.
}
\usage{
 std.error(x,na.rm)
}
\arguments{
  \item{x}{A vector of numerical observations.}
  \item{na.rm}{Dummy argument to match other functions.}
}
\details{
 \samp{std.error} will accept a numeric vector.
}
\value{
 The conventional standard error of the mean = sd(x)/sqrt(sum(!is.na(x)))
}
\author{Jim Lemon}
\seealso{\link{sd}}
\keyword{misc}