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
def_adjust_bin_edges(self, binner, ax_values):
# Some hacks for > daily data, see #1471, #1458, #1483bin_edges=binner.asi8ifself.freq!='D'andis_superperiod(self.freq, 'D'):
day_nanos=_delta_to_nanoseconds(timedelta(1))
ifself.closed=='right':
bin_edges=bin_edges+day_nanos-1else:
bin_edges=bin_edges+day_nanos
I'm not sure why the day is added when closed='left'. Even on datasets that don't start on a Monday, and thus don't error, it'll cause the intervals to start on Tuesday.
The text was updated successfully, but these errors were encountered:
Will result in an error. I tracked it down to
I'm not sure why the day is added when closed='left'. Even on datasets that don't start on a Monday, and thus don't error, it'll cause the intervals to start on Tuesday.
The text was updated successfully, but these errors were encountered: