equivalent(tractor.base)
equivalent()所属R语言包:tractor.base
Test two numeric vectors for equivalence
测试两个数值向量的等价性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Test two numeric vectors for equivalence.
测试两个数值向量的等价性。
用法----------Usage----------
equivalent(x, y, signMatters = TRUE, ...)
参数----------Arguments----------
参数:x
The first numeric vector.
第一数值向量。
参数:y
The second numeric vector.
第二个数字矢量。
参数:signMatters
Logical value: if FALSE then equivalence in absolute value is sufficient.
逻辑值:如果为FALSE,则等价的绝对值就足够了。
参数:...
Additional arguments to all.equal, notably tolerance.
额外参数all.equal,特别是tolerance。
Details
详细信息----------Details----------
This function is a wrapper for isTRUE(all.equal(x,y,...)), but with the additional capability of doing sign-insensitive comparison.
此功能的包装isTRUE(all.equal(x,y,...)),但用的附加功能做符号不区分大小写的比较。
值----------Value----------
TRUE if all elements of x match all elements of y to within tolerance, ignoring signs if required. FALSE otherwise.
TRUE如果所有元素的x的y在公差范围内匹配的所有元素,忽略的迹象,如果需要的话。 FALSE否则。
(作者)----------Author(s)----------
Jon Clayden
参考文献----------References----------
参见----------See Also----------
all.equal
all.equal
实例----------Examples----------
equivalent(c(-1,1), c(1,1)) # FALSE[FALSE]
equivalent(c(-1,1), c(1,1), signMatters=FALSE) # TRUE[TRUE]
equivalent(1:2, 2:3, tolerance=2) # TRUE[TRUE]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|