File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1472,10 +1472,11 @@ def equals(self, other):
1472
1472
DataFrame.eq : Compare two DataFrame objects of the same shape and
1473
1473
return a DataFrame where each element is True if the respective
1474
1474
element in each DataFrame is equal, False otherwise.
1475
- assert_series_equal : Return True if left and right Series are equal,
1476
- False otherwise.
1477
- assert_frame_equal : Return True if left and right DataFrames are
1478
- equal, False otherwise.
1475
+ testing.assert_series_equal : Raises an AssertionError if left and
1476
+ right are not equal. Provides an easy interface to ignore
1477
+ inequality in dtypes, indexes and precision among others.
1478
+ testing.assert_frame_equal : Like assert_series_equal, but targets
1479
+ DataFrames.
1479
1480
numpy.array_equal : Return True if two arrays have the same shape
1480
1481
and elements, False otherwise.
1481
1482
You can’t perform that action at this time.
0 commit comments