Closed trakru closed 2 years ago
Under "Grouped Time Resampling"
time_key = pd.TimeGrouper('5min') is incorrect/deprecated
time_key = pd.TimeGrouper('5min')
the line should now read: time_key = pd.Grouper(freq='5min')
time_key = pd.Grouper(freq='5min')
Will fix. I'm overdue for an errata fixing sprint, I will get to it sometime in 2020
This is fixed in the 3rd edition
Under "Grouped Time Resampling"
time_key = pd.TimeGrouper('5min')
is incorrect/deprecatedthe line should now read:
time_key = pd.Grouper(freq='5min')