Extremes-rv(rv)
Extremes-rv()所属R语言包:rv
Maxima and Minima of Random Variables
随机变量的最大值与最小值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the maxima and minima of the components of a random vector.
返回一个随机向量的分量的最大值和最小值。
用法----------Usage----------
rvmin(x)
rvmax(x)
rvrange(x)
## S3 method for class 'rv'
min(..., na.rm=FALSE)
## S3 method for class 'rv'
max(..., na.rm=FALSE)
## S3 method for class 'rv'
pmin(..., na.rm=FALSE)
## S3 method for class 'rv'
pmax(..., na.rm=FALSE)
参数----------Arguments----------
参数:x
an rv or rvsummary object
rv或rvsummary对象
参数:na.rm
remove missing values?
删除缺失值的吗?
参数:...
one or more rv objects or numeric objects
一个或多个rv对象或数字对象
Details
详细信息----------Details----------
rvmin applies the function min to each component of the argument x. Missing values are removed.
rvmin适用的功能min各组成部分的说法x。缺失值的被删除。
rvmax applies the function max to each component of the argument x. Missing values are removed.
rvmax适用的功能max各组成部分的说法x。缺失值的被删除。
rvrange applies the function range to each component of the argument x. Missing values are removed.
rvrange适用的功能range各组成部分的说法x。缺失值的被删除。
min.rv returns the minimum of the random vector, returning thus one random variable. Similarly max.rv returns the maximum of a vector.
min.rv返回的随机向量的最小值,返回一个随机变量。同样max.rv返回一个向量的最大值。
pmin.rv and pmax.rv returns the componentwise minima or maxima of several random vectors or constants, yielding thus a random vector of the same length.
pmin.rv和pmax.rv返回分量共极小值或极大值的几个随机向量或常数,从而得到一个随机向量具有相同的长度。
值----------Value----------
A numeric vector of the same dimension as x.
一个数字矢量的尺寸相同x。
(作者)----------Author(s)----------
Jouni Kerman
<a href="mailto:jouni@kerman.com">jouni@kerman.com</a>
参考文献----------References----------
Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
参见----------See Also----------
rvmedian, rvmean.
rvmedian,rvmean。
实例----------Examples----------
x <- rvpois(10, lambda=3)
rvmin(x)
rvmax(x)
rvrange(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|