What is the proper solution in pandas to get the next timestamp value?
I have the following timestamp:
Timestamp('2017-11-01 00:00:00', freq='MS')
I want to get this as the result for the next timestamp value:
Timestamp('2017-12-01 00:00:00', freq='MS')
Edit:
I am working with multiple frequencies (1min, 5min, 15min, 60min, D, W-SUN, MS).
Is there a generic command to get next value?
Is the best approach to build a function that behaves accordingly to each one of the frequencies?