We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3754267 commit 7147203Copy full SHA for 7147203
pandas/_testing/asserters.py
@@ -1176,7 +1176,10 @@ def assert_frame_equal(
1176
Specify how to compare internal data. If False, compare by columns.
1177
If True, compare by blocks.
1178
check_exact : bool, default False
1179
- Whether to compare number exactly.
+ Whether to compare number exactly. If False, the comparison uses the
1180
+ relative tolerance (``rtol``) and absolute tolerance (``atol``)
1181
+ parameters to determine if two values are considered close,
1182
+ according to the formula: ``|a - b| <= (atol + rtol * |b|)``.
1183
1184
.. versionchanged:: 2.2.0
1185
0 commit comments