Table#
- class cudf._lib.pylibcudf.table.Table(list columns)#
A list of columns of the same size.
- Parameters:
- columnslist
The columns in this table.
Methods
columns
(self)The columns in this table.
from_arrow
(Table pyarrow_table)Create a Table from a PyArrow Table.
to_arrow
(self, list metadata)Convert to a PyArrow Table.
- static from_arrow(Table pyarrow_table)#
Create a Table from a PyArrow Table.
- Parameters:
- pyarrow_tablepyarrow.Table
The PyArrow Table to convert to a Table.