rvvar(rv)
rvvar()所属R语言包:rv
Variances of Components of Random Vectors
方差的随机向量的组成部分
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes variances of the simulations of components of a random vector of array.
数组的一个随机向量的成分的模拟计算方差。
用法----------Usage----------
rvvar(x)
## S3 method for class 'rv'
rvvar(x)
## S3 method for class 'rvsummary'
rvvar(x)
rvsd(x)
## S3 method for class 'rv'
rvsd(x)
## S3 method for class 'rvsummary'
rvsd(x)
参数----------Arguments----------
参数:x
an object
对象
Details
详细信息----------Details----------
rvvar computes the means of the simulations of all individual components of a random vector (rv) object.
rvvar计算模拟一个随机向量(随机变量)的对象的所有的单个组件的装置。
That is, rvvar applies the function var to the vector of simulations of each component of x, thus computing "columnwise" variances of the matrix of simulations of x.
也就是说rvvar的功能应用于var的矢量的各成分的模拟x,从而计算“纵列”方差矩阵的模拟x。
rvsd applies the function sd to the vector of simulations of each component of x, thus computing "columnwise" standard deviations of the matrix of simulations of x.
rvsd的功能应用于sd的各成分的模拟x的向量,从而计算“纵列”的标准偏差的矩阵的模拟x。
值----------Value----------
A numeric vector or array (of the same dimension as that of 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----------
rvmin, rvmax, rvmedian, rvsd.
rvmin,rvmax,rvmedian,rvsd。
实例----------Examples----------
x <- rvnorm(mean=0, var=1:10)
rvvar(x)
rvsd(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|