We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
from pandas.core.arrays import IntervalArray import numpy as np arr = np.random.randn(10) a = IntervalArray.from_arrays(arr, arr+1) b = a[:5] b[0] = b[1] assert a[0] == a[1] # <-fails