Do I have to sort dates chronologically to use pandas.DataFrame.ewm?

267 Views Asked by At

I need to calculate EMA for a set of data from csv file where dates are in descending order.

When I apply pandas.DataFrame.ewm I get EMA for the latest (by date) equal to the value. This is because ewm starts observation from top to bottom in DataFrame.

So far, I could not find option to make it reverse for ewm. So I guess, I will have to reverse all my dataset.

Maybe somebody knows how to make ewm start from bottom values? Or is it recommended to always use datetimeindex sorted chronologically? From oldest values on top to newest on the bottom?

3

There are 3 best solutions below

0
On BEST ANSWER

From pandas' documentation:

Times corresponding to the observations. Must be monotonically increasing and datetime64[ns] dtype.

I guess, datetimeindex must be chronological..

1
On

You can simply reset your index temporarily.

df.index.name = 'date' # IF YOU HAVEN'T SET A NAME YET
df = df.reset_index(drop=False)
# PERFORM EWM OPERATIONS

Then set it back to the original DateTimeIndex

df = df.set_index('date')
0
On

I proposed a similar question here: rolling window in pandas dataframe in reverse date order?

where the concluding options are:

  • double reverse
  • sorting

The double reverse is preferred because sorting is "expensive" (although I have not compared both myself).