Return the column at the indicated position.
(self, i: int)
| 133 | return self._df.schema.names |
| 134 | |
| 135 | def get_column(self, i: int) -> _PyArrowColumn: |
| 136 | """ |
| 137 | Return the column at the indicated position. |
| 138 | """ |
| 139 | return _PyArrowColumn(self._df.column(i), |
| 140 | allow_copy=self._allow_copy) |
| 141 | |
| 142 | def get_column_by_name(self, name: str) -> _PyArrowColumn: |
| 143 | """ |