I have a dataframe that looks like this.
Now i want to create a function to get the sum of the 'Total' column for each of the name 'ABC','XYZ'... with a pre-defined condition of the Currency. In other words, i want my output to be the same as the following
Name_list = list(df['Name'])
Currency_list = list(df['Currency'])
def Calculation(a,b):
for a in Name_list:
for b in Currency_list:
return df['Total'].sum()
result = Calculation('ABC','VND')
print(result)
So far what I have got is just the sum of the whole column 'Total'. Anyone has ideas how to get the desired result for this?
I think pandas' groupby
method may help you here:
df.groupby(['Currency', 'Name'])['Total'].sum()
Link to official docs: https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.groupby.html