median {base} | R Documentation |
Compute the sample median of the vector of values given as its argument.
median(x, na.rm=FALSE)
x |
a numeric vector containing the values whose median is to be computed. |
na.rm |
a logical value indicating whether |
quantile
for general quantiles.
median(1:4)# = 2.5 [even number]
median(c(1:3,100,1000))# = 3 [odd, robust]