Trouver une agrégation quotidienne en pandas
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