Temukan agregasi harian dalam panda
df.groupby(['Dates']).agg({
'A':sum
})
#this will take the sum of all A values on a specific date
pythonized
df.groupby(['Dates']).agg({
'A':sum
})
#this will take the sum of all A values on a specific date