Table
fio.Table(self, data, index=None, columns=None, **kwargs)
Create a struct based on tabular data in a file.
Parameters
data |
ndarray |
The data in numpy.ndarray format. |
required |
index |
list | tuple |
The index column from which the values are taken and used to index the rows. |
None |
columns |
list | tuple |
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. |
Methods
from_stream |
Create the Table from a data steam (file). |
upscale |
Upscale the data by a smaller delta. |
Back to top