constant(rv)
constant()所属R语言包:rv
Constant Vectors
恒向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to coerce or test for non-random objects.
强迫或测试非随机的对象。
用法----------Usage----------
is.constant(x)
as.constant(x)
## S3 method for class 'rv'
as.constant(x)
## S3 method for class 'rvsummary'
as.constant(x)
参数----------Arguments----------
参数:x
an object, random variable (rv) or not
一个对象,随机值(rv)或不
Details
详细信息----------Details----------
is.constant returns TRUE for each component of the argument object if there is only one simulation (that is, the variable is “constant”).
is.constant返回TRUE用于每个组件的参数对象,如果只有一个模拟(即,该变量是“恒定的”)。
Note: rv objects that merely have variance zero are not therefore necessarily “true” constants.
注:RV对象,仅仅有方差为零,因此一定“真正的”常量。
as.constant coerces rv or rvsummary objects into constant strings; NA is returned for component that is not random.
as.constant胁迫rv或rvsummary对象常量字符串,“NA返回的组成部分,是不是随机的。
(作者)----------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.
实例----------Examples----------
is.constant(1) # TRUE[TRUE]
is.constant(as.rv(1)) # TRUE[TRUE]
setnsims(200)
x <- rvbern(prob=0.001)
all(sims(x)==0) # most probably true[最可能是真实的]
is.constant(x) # always FALSE[始终为FALSE]
x <- rvnorm(3)
x[1] <- 1
as.constant(x) # 1, NA, NA[1,NA,NA]
all(is.random(x) & is.na(as.constant(x))) # always TRUE[总是TRUE]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|