File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
90
90
-i " pandas.arrays.ArrowExtensionArray PR07,SA01" \
91
91
-i " pandas.arrays.IntegerArray SA01" \
92
92
-i " pandas.arrays.IntervalArray.length SA01" \
93
- -i " pandas.arrays.IntervalArray.right SA01" \
94
93
-i " pandas.arrays.NumpyExtensionArray SA01" \
95
94
-i " pandas.arrays.SparseArray PR07,SA01" \
96
95
-i " pandas.arrays.TimedeltaArray PR07,SA01" \
Original file line number Diff line number Diff line change @@ -1269,6 +1269,21 @@ def right(self) -> Index:
1269
1269
"""
1270
1270
Return the right endpoints of each Interval in the IntervalArray as an Index.
1271
1271
1272
+ This property extracts the right endpoints from each interval contained within
1273
+ the IntervalArray. This can be helpful in use cases where you need to work
1274
+ with or compare only the upper bounds of intervals, such as when performing
1275
+ range-based filtering, determining interval overlaps, or visualizing the end
1276
+ boundaries of data segments.
1277
+
1278
+ See Also
1279
+ --------
1280
+ arrays.IntervalArray.left : Return the left endpoints of each Interval in
1281
+ the IntervalArray as an Index.
1282
+ arrays.IntervalArray.mid : Return the midpoint of each Interval in the
1283
+ IntervalArray as an Index.
1284
+ arrays.IntervalArray.contains : Check elementwise if the Intervals contain
1285
+ the value.
1286
+
1272
1287
Examples
1273
1288
--------
1274
1289
You can’t perform that action at this time.
0 commit comments