Return the column whose name is the indicated name.
(self, name: str)
| 140 | allow_copy=self._allow_copy) |
| 141 | |
| 142 | def get_column_by_name(self, name: str) -> _PyArrowColumn: |
| 143 | """ |
| 144 | Return the column whose name is the indicated name. |
| 145 | """ |
| 146 | return _PyArrowColumn(self._df.column(name), |
| 147 | allow_copy=self._allow_copy) |
| 148 | |
| 149 | def get_columns(self) -> Iterable[_PyArrowColumn]: |
| 150 | """ |