Description Usage Arguments Value Examples
View source: R/utility_functions.R
Compute whether x and y are approximately equal given a tolerance level
1 2 3 | approx_equal(x, y, tol = .Machine$double.eps^0.5)
x %~% y
|
x |
Numeric scalar. |
y |
Numeric scalar. |
tol |
Tolerance. |
Boolean
1 2 3 | approx_equal(1, 1)
1 %~% (1 + 1e-16)
1 %~% 1.01
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.