rvmean(rv)
rvmean()所属R语言包:rv
Expectation of a Random Variable
随机变量的期望
译者:生物统计家园网 机器人LoveR
描述----------Description----------
rvmean
rvmean
用法----------Usage----------
rvmean(x)
E(x)
Pr(X)
参数----------Arguments----------
参数:x
an rv object
RV对象
参数:X
a logical rv object
一个逻辑RV对象
Details
详细信息----------Details----------
rvmean computes the means of the simulations of all individual components of a random vector (rv) object.
rvmean计算模拟一个随机向量(随机变量)的对象的所有的单个组件的装置。
E is an alias for rvmean, standing for “Expectation.”
E的别名rvmean,站在“期望”。
Pr is another alias for rvmean, standing for &ldquorobability of”; suggested to be used when the argument is a logical statement involving random variables (that is, a description of an event such as x>0 or x>y). Then Pr(x>0) gives the probability of the event “x>0”. The statement x>0 returns a Bernoulli (indicator) random variable object (having 1/0 or TRUE/FALSE values) and the expectation of such variable is just the probability of the event where the indicator is one.
Pr是另一个别名rvmean,站在为“概率论”的建议时所使用的参数是一个逻辑语句的随机变量(即事件的描述,如x>0或x>y“)。然后Pr(x>0)给出“x> 0时”的事件的概率。的声明x>0返回,伯努利(指标)随机变量对象(1/1或TRUE / FALSE值),这样的变量的期望是事件的概率的指标之一。
值----------Value----------
A numerical vector with 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----------
mean.rv: distribution of the arithmetic mean of a vector; rvmin, rvmax, rvmedian, link{rvvar}, rvsd.
mean.rv:一个向量分布的算术平均值; rvmin,rvmax,rvmedian,link{rvvar},rvsd。
实例----------Examples----------
x <- rvnorm(mean=(1:10)/5, sd=1)
rvmean(x) # means of the 10 components[的10个组件的装置]
E(x) # same as rvmean(x)[同样的作为rvmean(X)]
Pr(x>1) # probabilities that each component is >1.[概率,每个组件是> 1。]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|