如果target
大于tolerance
,则似乎要检查relative error <= tolerance
。也就是说,abs(current-target)/target <= tolerance
在:
all.equal(target, current, tolerance)
例如:
all.equal(3, 6, tolerance = 1)
# TRUE --> abs(6-3)/3 <= 1
相反,如果target
小于tolerance
,则all.equal
使用mean absolute difference
。
all.equal(0.01, 4, tolerance = 0.01)
# [1] "Mean absolute difference: 3.99"
all.equal(0.01, 4, tolerance = 0.00999)
# [1] "Mean relative difference: 399"
all.equal(4, 0.01, tolerance = 0.01)
# [1] "Mean relative difference: 0.9975"
但是,这不是文档所述。为了进一步了解为什么会发生这种情况,让我们看一下相关的片段all.equal.numeric
:
# take the example: all.equal(target=0.01, current=4, tolerance=0.01)
cplx <- is.complex(target) # FALSE
out <- is.na(target) # FALSE
out <- out | target == current # FALSE
target <- target[!out] # = target (0.01)
current <- current[!out] # = current (4)
xy <- mean((if(cplx) Mod else abs)(target - current)) # else part is run = 3.99
# scale is by default NULL
what <- if (is.null(scale)) {
xn <- mean(abs(target)) # 0.01
if (is.finite(xn) && xn > tolerance) { # No, xn = tolerance
xy <- xy/xn
"relative"
}
else "absolute" # this is computed for this example
}
else {
xy <- xy/scale
"scaled"
}
在上面的代码中检查的所有内容(仅显示来自 OP 的示例的必要部分)是:从 and 中删除任何 NA 和相等的值(oftarget
和current
)。然后计算为和的平均绝对差。但决定它是否会成为或取决于部分。这里不检查任何条件。这仅取决于哪个是。target
current
xy
target
current
relative
absolute
what
xy
xn
mean(abs(target))
因此,总而言之,OP粘贴的部分(为方便起见粘贴在这里):
如果这个(意思是,平均绝对差)小于公差或不是有限的,则使用绝对差,否则使用平均绝对差缩放相对差。
似乎错误/误导。