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.

columns(self) list#

The columns in this 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.

to_arrow(self, list metadata) Table#

Convert to a PyArrow Table.

Parameters:
metadatalist

The metadata to attach to the columns of the table.