We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa134bb commit 3ebd19fCopy full SHA for 3ebd19f
pandas/_testing/asserters.py
@@ -1158,7 +1158,10 @@ def assert_frame_equal(
1158
Specify how to compare internal data. If False, compare by columns.
1159
If True, compare by blocks.
1160
check_exact : bool, default False
1161
- Whether to compare number exactly.
+ Whether to compare number exactly. If False, the comparison uses the
1162
+ relative tolerance (`rtol`) and absolute tolerance (`atol`)
1163
+ parameters to determine if two values are considered close,
1164
+ according to the formula: `|a - b| <= (atol + rtol * |b|)`.
1165
1166
.. versionchanged:: 2.2.0
1167
0 commit comments