Answers for "update dataframe based on value from another dataframe"

0

update dataframe based on value from another dataframe

In [27]:

df.loc[df.Name.isin(df1.Name), ['Nonprofit', 'Education']] = df1[['Nonprofit', 'Education']]
df
Out[27]:
  Name  Nonprofit  Business  Education
0    X          1         1          0
1    Y          1         1          1
2    Z          1         0          1
3    Y          1         1          1

[4 rows x 4 columns]
Posted by: Guest on August-30-2021

Code answers related to "update dataframe based on value from another dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language