File tree 2 files changed +28
-2
lines changed
third_party/bigframes_vendored/pandas/core
2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -5111,7 +5111,20 @@ def replace(
5111
5111
5112
5112
@property
5113
5113
def iloc (self ):
5114
- """Purely integer-location based indexing for selection by position."""
5114
+ """Purely integer-location based indexing for selection by position.
5115
+
5116
+ Returns:
5117
+ ILocDataFrameIndexer: Purely integer-location Indexers.
5118
+ """
5119
+ raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
5120
+
5121
+ @property
5122
+ def loc (self ):
5123
+ """Access a group of rows and columns by label(s) or a boolean array.
5124
+
5125
+ Returns:
5126
+ ILocDataFrameIndexer: Indexers object.
5127
+ """
5115
5128
raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
5116
5129
5117
5130
@property
Original file line number Diff line number Diff line change @@ -3313,7 +3313,20 @@ def map(
3313
3313
3314
3314
@property
3315
3315
def iloc (self ):
3316
- """Purely integer-location based indexing for selection by position."""
3316
+ """Purely integer-location based indexing for selection by position.
3317
+
3318
+ Returns:
3319
+ IlocSeriesIndexer: Purely integer-location Indexers.
3320
+ """
3321
+ raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
3322
+
3323
+ @property
3324
+ def loc (self ):
3325
+ """Access a group of rows and columns by label(s) or a boolean array.
3326
+
3327
+ Returns:
3328
+ LocSeriesIndexer: Indexers object.
3329
+ """
3317
3330
raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
3318
3331
3319
3332
@property
You can’t perform that action at this time.
0 commit comments