fuzzy(rv)
fuzzy()所属R语言包:rv
Fuzziness
模糊
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Tests whether an object is “fuzzy”, i.e. a logical random scalar that has probability strictly between zero and one (not strictly true nor strictly false).
测试一个对象是否是“模糊”,即一个逻辑的随机标量有的概率严格的零和一之间(不完全正确,也不是绝对虚假的)。
用法----------Usage----------
is.fuzzy(x)
## S3 method for class 'rv'
is.fuzzy(x)
参数----------Arguments----------
参数:x
an object, random or constant
的对象,无规或恒定
(作者)----------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----------
x <- as.logical(rvbern(1,0.4)) # a logical random variable[一个逻辑随机变量]
is.fuzzy(x) # TRUE, since x is logical and not constant[TRUE,因为x是逻辑,而不是恒定的]
is.fuzzy(x<2) # FALSE, since x is less than 2 with probability one[为FALSE,因为x是小于2的概率是1]
is.fuzzy(rvnorm(1)) # FALSE, since it's not a probability[FALSE,因为它不是一个概率]
is.fuzzy(TRUE) # FALSE, since TRUE is strictly TRUE[FALSE,TRUE是严格TRUE]
is.fuzzy(1) # FALSE, since 1 is not a logical variable[FALSE,因为1不是一个逻辑变量]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|