Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Pandas DataFrame: combine_first() function

DataFrame - combine_first() function

The combine_first() function is used to update null elements with value in the same location in other.

Combine two DataFrame objects by filling null values in one DataFrame with non-null values from other DataFrame. The row and column indexes of the resulting DataFrame will be the union of the two.

Syntax:

DataFrame.combine_first(self, other)

Parameters:

Name Description Type/Default Value Required / Optional
other    

Provided DataFrame to use to fill null values.


DataFrame Required

Returns: DataFrame

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - combine() function
Next: DataFrame - apply() function