all(base)
all()所属R语言包:base
Are All Values True?
所有值是真实的吗?
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a set of logical vectors, are all of the values true?
鉴于一套逻辑向量,是所有真正的值吗?
用法----------Usage----------
all(..., na.rm = FALSE)
参数----------Arguments----------
参数:...
zero or more logical vectors. Other objects of zero length are ignored, and the rest are coerced to logical ignoring any class.
零个或多个逻辑的向量。被忽略了其他物体的长度为零,其余的被强制忽略任何类的逻辑。
参数:na.rm
logical. If true NA values are removed before the result is computed.
逻辑。如果真NA值删除之前的计算结果。
Details
详情----------Details----------
This is a generic function: methods can be defined for it directly or via the Summary group generic. For this to work properly, the arguments ... should be unnamed, and dispatch is on the first argument.
这是一个泛型函数:方法可直接或通过Summary组通用的定义。对于这个正常工作,...应该是命名,并派遣第一个参数是参数。
Coercion of types other than integer (raw, double, complex, character, list) gives a warning as this is often unintentional.
不是整数的其他类型的胁迫(原料,双重的,复杂的,性格,列表)给出一个警告,因为这往往是无意的。
This is a primitive function.
这是一种原始的功能。
值----------Value----------
The value is a logical vector of length one.
该值是一个长度为1的逻辑向量。
Let x denote the concatenation of all the logical vectors in ... (after coercion), after removing NAs if requested by na.rm = TRUE.
让x表示...(强制)后的所有逻辑向量的串联,取出后如果NA要求na.rm = TRUE的。
The value returned is TRUE if all of the values in x are TRUE (including if there are no values), and FALSE if at least one of the values in x is FALSE. Otherwise the value is NA (which can only occur if na.rm = FALSE and ... contains no FALSE values and at least one NA value).
返回的值是TRUE如果所有的价值观xTRUE(包括是否有任何值),FALSE如果至少有一个值 x是FALSE。否则该值为NA(只能发生na.rm = FALSE和...没有FALSE值至少有一个NA值)。
S4方法----------S4 methods----------
This is part of the S4 Summary group generic. Methods for it must use the signature x, ..., na.rm.
这是的S4Summary组通用的一部分。它的方法必须使用签名x, ..., na.rm。
注意----------Note----------
That all(logical(0)) is true is a useful convention: it ensures that
all(logical(0))是真的是一个有用的约定:它确保
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
any, the "complement" of all, and stopifnot(*) which is an all(*) "insurance".
anyall和stopifnot(*)是all(*)保险,补。
举例----------Examples----------
range(x <- sort(round(stats::rnorm(10) - 1.2, 1)))
if(all(x < 0)) cat("all x values are negative\n")
all(logical(0)) # true, as all zero of the elements are true.[真实,是所有元素为零的真实。]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|