Compute the distribution sample median of the vector of values given as its argument.
计算的矢量分配样本中位数作为它的参数的值。
用法----------Usage----------
## S3 method for class 'rv'
median(x, na.rm = FALSE)
参数----------Arguments----------
参数:x
a randomv vector containing the components whose distribution of the median value is to be computed.
包含的组件,其分布的中位数的值是要计算的一个randomv矢量。
参数:na.rm
a logical value indicating whether NA values should be stripped before the computation proceeds.
一个逻辑值,该值指示是否NA值应该被剥夺前计算所得。
参考文献----------References----------
Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
参见----------See Also----------
rvmedian for the componentwise medians. quantile for general quantiles.
rvmedian的分支中位数。 quantile一般位数。
实例----------Examples----------
x <- rvnorm(10) ## A random vector of length 10.[#A随机向量的长度为10。]
median(x) ## A random scalar (vector of length 1).[#随机标量(向量长度为1)。]
rvmedian(x) ## A numeric vector of length 10.[#A数字矢量的长度为10。]