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



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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-combine_first.php