-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
IntervalInterval data typeInterval data type
Milestone
Description
Currently, it looks like IntervalIndex.nbytes
just uses IndexOpsMixin.nbytes
@property
def nbytes(self):
""" return the number of bytes in the underlying data """
return self._values.nbytes
Should it instead be self.left.nbytes + self.right.nbytes
? This will be faster, and I think more correct.
Metadata
Metadata
Assignees
Labels
IntervalInterval data typeInterval data type