Convert this block (or columns of block) into a NumPy ndarray. Args: columns: Name of columns to convert, or None if converting all columns.
(
self, columns: Optional[Union[str, List[str]]] = None
)
| 469 | raise NotImplementedError |
| 470 | |
| 471 | def to_numpy( |
| 472 | self, columns: Optional[Union[str, List[str]]] = None |
| 473 | ) -> Union[np.ndarray, Dict[str, np.ndarray]]: |
| 474 | """Convert this block (or columns of block) into a NumPy ndarray. |
| 475 | |
| 476 | Args: |
| 477 | columns: Name of columns to convert, or None if converting all columns. |
| 478 | """ |
| 479 | raise NotImplementedError |
| 480 | |
| 481 | def to_arrow(self) -> "pyarrow.Table": |
| 482 | """Convert this block into an Arrow table.""" |
no outgoing calls