Finden Sie tägliche Aggregation in 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