Table
io.Table(self, data, index=None, columns=None, **kwargs)
Create a struct based on tabular data in a file.
Parameters
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
object |
An object containing actively loaded tabular data. |
Back to top