Pandas
keyboard_arrow_down 655 guides
chevron_leftBinary Operators
check_circle
Mark as learned thumb_up
1
thumb_down
0
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Pandas DataFrame | combine_first method
schedule Aug 10, 2023
Last updated local_offer
Tags Python●Pandas
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
Pandas DataFrame.combine_first(~)
method replaces all instances of NaN
in one DataFrame with non-NaN
values from the other DataFrame.
Note the following:
only columns that share the same column label will be combined.
if both values are
NaN
, then the result will simply beNaN
.
Parameters
1. other
link | DataFrame
The other DataFrame to combine with.
Return Value
A new DataFrame
.
Examples
Basic usage
Consider the following DataFrames:
df = pd.DataFrame({"A":[None,4], "B":[5,6]})df_other = pd.DataFrame({"A":[1,8], "B":[2,pd.np.NaN], "C":[4,2]})
A B | A B C0 NaN 5 | 0 1 2 41 4 6 | 1 8 NaN 2
To replace all instances of NaN
in df
with the corresponding values from df_other
:
df.combine_first(df_other)
A B C0 1.0 5 4.01 4.0 6 2.0
Notice how column C
, which did not exist in df
, has been appended.
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
Official Pandas Documentation
https://pandas.pydata.org/pandas-docs/dev/reference/api/pandas.DataFrame.combine_first.html
thumb_up
1
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!