Select a schema field by its column name or numeric index. Args: i (`Union[int, str]`): The index or name of the field to retrieve. Returns: `pyarrow.Field`
(self, *args, **kwargs)
| 379 | return self.table.to_reader(max_chunksize=max_chunksize) |
| 380 | |
| 381 | def field(self, *args, **kwargs): |
| 382 | """ |
| 383 | Select a schema field by its column name or numeric index. |
| 384 | |
| 385 | Args: |
| 386 | i (`Union[int, str]`): |
| 387 | The index or name of the field to retrieve. |
| 388 | |
| 389 | Returns: |
| 390 | `pyarrow.Field` |
| 391 | """ |
| 392 | return self.table.field(*args, **kwargs) |
| 393 | |
| 394 | def column(self, *args, **kwargs): |
| 395 | """ |
no outgoing calls