Return the i-th value or values in the Series by location. Parameters ---------- i : int Returns ------- scalar
(self, i: int, axis: AxisInt = 0)
| 921 | # Indexing Methods |
| 922 | |
| 923 | def _ixs(self, i: int, axis: AxisInt = 0) -> Any: |
| 924 | """ |
| 925 | Return the i-th value or values in the Series by location. |
| 926 | |
| 927 | Parameters |
| 928 | ---------- |
| 929 | i : int |
| 930 | |
| 931 | Returns |
| 932 | ------- |
| 933 | scalar |
| 934 | """ |
| 935 | return self._values[i] |
| 936 | |
| 937 | def _slice(self, slobj: slice, axis: AxisInt = 0) -> Series: |
| 938 | # axis kwarg is retained for compat with NDFrame method |
no outgoing calls
no test coverage detected