open_csv
io.open_csv(file, delimiter=',', header=True, index=None, lazy=False)
Open a csv file.
Parameters
Name | Type | Description | Default |
---|---|---|---|
file |
str | Path to the file. | required |
delimiter |
str | Column seperating character, either something like ',' or ';' . |
',' |
header |
bool | Whether or not to use headers. | True |
index |
str | Name of the index column. | None |
lazy |
bool | If True , a lazy read is executed. |
False |
Returns
Type | Description |
---|---|
Table | TableLazy |
Object holding parsed csv data. |