Pandas DataFrame: equals() function
DataFrame - equals() function
The equals() function is used to test whether two objects contain the same elements.
This function allows two Series or DataFrames to be compared against each other to see if they have the same shape and elements. NaNs in the same location are considered equal. The column headers do not need to have the same type, but the elements within the columns must be the same dtype.
Syntax:
DataFrame.equals(self, other)
Parameters:
Name | Description | Type/Default Value | Required / Optional |
---|---|---|---|
other | The other Series or DataFrame to be compared with the first. |
Series or DataFrame | Required |
Returns: bool
True if all elements are the same in both objects, False otherwise.
Example:
Download the Pandas DataFrame Notebooks from here.
Previous: DataFrame - drop() function
Next: DataFrame - filter() function
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/pandas/dataframe/dataframe-equals.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics