I try to substract two pandas series which contain no. of flights for each day between passed dates. When i substract them i get series with length 132858. Why is that? I'd like to substract every paired date.
flights2019 = flights('2019-01-01','2020-01-01')
flights2020 = flights('2020-01-01','2021-01-01')
flightsDiff = flights2019.sub(flights2020)
print(flightsDiff.size)
Edit: My series seem to not be numbered. Could this be source of the problem? How do I fix this?