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
Slicing a timeseries with time results in a TypeError if the timeseries contains over 1,000,000 entries.
import pandas as pd
from datetime import time
ser = pd.Series(index=pd.date_range('2000-1-1', periods=1000000, freq=pd.datetools.offsets.Second()))
ser.head(999999)[time(15,0)] # this is fine
ser[time(15,0)] # this fails
The text was updated successfully, but these errors were encountered:
willpan
changed the title
BUG: Slicing timeseries with over
BUG: Slicing timeseries with over 1000000 entries with time fails
Oct 28, 2014
Slicing a timeseries with time results in a TypeError if the timeseries contains over 1,000,000 entries.
The text was updated successfully, but these errors were encountered: