Table

io.Table(self, data, index=None, columns=None, **kwargs)

Create a struct based on tabular data in a file.

Parameters

Name Type Description Default
data BufferHandler | dict A datastream or a dictionary. The datastream is a connection through which data can pass. required
index str | tuple The index column from which the values are taken and used to index the rows. None
columns list The column headers of the table. If not supplied, it will be inferred from the file. None

Returns

Type Description
object An object containing actively loaded tabular data.

Methods

Name Description
max summary.
mean summary.
upscale summary.
Back to top