Answers for "add values of two columns pandas"

0

how to add the sum of multiple columns into another column in a dataframe

print(df)
   Apples  Bananas  Grapes  Kiwis
0     2.0      3.0     NaN    1.0
1     1.0      3.0     7.0    NaN
2     NaN      NaN     2.0    3.0

df['Fruit Total']=df.iloc[:,-4:].sum(axis=1)

print(df)
   Apples  Bananas  Grapes  Kiwis  Fruit Total
0     2.0      3.0     NaN    1.0          6.0
1     1.0      3.0     7.0    NaN         11.0
2     NaN      NaN     2.0    3.0          5.0
Posted by: Guest on June-03-2020
1

add values of two columns pandas

df['sum'] = df['a'] + df['b']  # sum is a new column
Posted by: Guest on March-23-2022
3

add two column values of a datframe into one

df["period"] = df["Year"] + df["quarter"]
Posted by: Guest on May-10-2020
0

sum two columns pandas

sum_column = df["col1"] + df["col2"]
Posted by: Guest on May-29-2020

Code answers related to "add values of two columns pandas"

Python Answers by Framework

Browse Popular Code Answers by Language