mean {base} | R Documentation |
Generic function for the (trimmed) arithmetic mean.
mean(x, ...)
mean.default(x, trim = 0, na.rm = FALSE, ...)
x |
An R object. Currently there are methods for numeric data
frames, numeric vectors and dates. A complex vector is allowed for
|
trim |
the fraction (0 to 0.5) of observations to be
trimmed from each end of |
na.rm |
a logical value indicating whether |
... |
further arguments passed to or from other methods. |
For a data frame, a named vector with the appropriate method being applied column by column.
If trim
is zero (the default),
the arithmetic mean of the values in x
is computed.
If trim
is non-zero, a symmetrically trimmed mean is computed
with a fraction of trim
observations deleted from each end
before the mean is computed.
weighted.mean
, mean.POSIXct
x <- c(0:10, 50)
xm <- mean(x)
c(xm, mean(x, trim = 0.10))
all.equal(mean(x, trim = 0.5), median(x))
data(USArrests)
mean(USArrests, trim = 0.2)