prob(prob)
prob()所属R语言包:prob
Probability and Conditional Probability
概率和条件概率
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates probability and conditional probability of events.
计算的事件的概率和条件概率。
用法----------Usage----------
prob(x, ...)
## Default S3 method:[默认方法]
prob(x, event = NULL, given = NULL, ...)
## S3 method for class 'ps':
prob(x, event = NULL, given = NULL, ...)
参数----------Arguments----------
参数:x
a probability space or a subset of one.
的概率空间或1的一个子集。
参数:event
logical expression indicating elements or rows of space to keep: missing values are taken as false.
逻辑表达式表示元素或行space保持遗漏值将被视为假。
参数:given
either a subset of a probability space or a logical expression indicating elements or rows of space to keep: missing values are taken as false.
任何一个子集的概率空间或逻辑表达式,表示元素或行space保持遗漏值将被视为假。
参数:...
further arguments to be passed to or from other methods.
要传递给或从其他的方法的进一步的论据。
Details
详细信息----------Details----------
This function calculates the probability of events or subsets of a given sample space. Conditional probability is also implemented. In essence, the prob() function operates by summing the probs column of its argument. It will find subsets on the fly if desired.
此函数计算概率的事件或一个给定的样本空间的子集。条件概率也可以实现。从本质上讲,prob()probs其参数列求和功能操作。它会发现在飞行中的子集,如果需要的话。
The event argument is used to define a subset of x, that is, the only outcomes used in the probability calculation will be those that are elements of x and satisfy event simultaneously. In other words, prob(x,event) calculates prob(intersect(x, subset(x, event))). Consequently, x should be the entire probability space in the case that event is non-null.
event参数是用来定义的一个子集的x的概率的计算中使用的唯一结果,即,将那些元素x和满足event同时进行。换言之,prob(x,event)计算prob(intersect(x, subset(x, event)))。因此,x应该是整个概率空间的情况下,event非空。
There is some flexibility in the given argument in that it can be either a data frame or it can be a logical expression that defines the subset. However, that flexibility is limited. In particular, if given is a logical expression, then event must also be specified (also a logical expression). And in this case, the argument x should be the entire sample space, not a subset thereof.
given参数中有一定的灵活性,它可以是一个数据框,或者它可以是一个逻辑表达式,该表达式定义的子集。然而,这种灵活性是有限的。特别是,如果given是一个逻辑表达式,然后event还必须指定(也有逻辑表达式)。而在这种情况下,参数x应该是整个样本空间,而不是它们的子集。
值----------Value----------
A number in the interval [0,1].
许多的时间间隔[0,1]。
(作者)----------Author(s)----------
G. Jay Kerns <a href="mailto:gkerns@ysu.edu">gkerns@ysu.edu</a>.
参见----------See Also----------
probspace, iidspace
probspace,iidspace
实例----------Examples----------
S <- rolldie(times = 3, makespace = TRUE )
prob(S, X1+X2 > 9 )
prob(S, X1+X2 > 9, given = X1+X2+X3 > 7 )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|