You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This obviously affected by issues fixed in #3145,
still prob should add to the vbenchs, and see what we can do
In [11]: %time df_shift = df.groupby(level=0).transform(lambda x: x.shift(-1))
CPU times: user 10.13 s, sys: 0.18 s, total: 10.31 s
Wall time: 10.35 s
In [12]: pd.__version__
Out[12]: '0.11.0.dev-e6140e9'
In [11]: %time df_shift = df.groupby(level=0).transform(lambda x: x.shift(-1))
CPU times: user 51.07 s, sys: 0.25 s, total: 51.32 s
Wall time: 51.48 s
In [13]: pd.__version__
Out[13]: '0.10.1'
xref http://stackoverflow.com/questions/13180499/most-efficient-way-to-shift-multiindex-time-series
The text was updated successfully, but these errors were encountered: