* Purely integer-location based indexing for selection by position. * ``.iloc`` is primarily integer position based (from ``0`` to * ``length-1`` of the axis), but may also be used with a boolean array. * * @param rows Array of row indexes * * Allowed inputs are in rows an
(rows: Array<string | number | boolean>)
| 102 | * ``` |
| 103 | */ |
| 104 | iloc(rows: Array<string | number | boolean>): Series { |
| 105 | return _iloc({ ndFrame: this, rows }) as Series |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Access a group of rows by label(s) or a boolean array. |