Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API can not handle files with thousands of columns #61

Closed
leoxtc opened this issue Nov 14, 2019 · 2 comments
Closed

API can not handle files with thousands of columns #61

leoxtc opened this issue Nov 14, 2019 · 2 comments

Comments

@leoxtc
Copy link

leoxtc commented Nov 14, 2019

I have a file with 16k columns and the API can not parse it.

Column names are nor parsed correctly neither the lines

Can I send a example file?

@leoxtc
Copy link
Author

leoxtc commented Nov 14, 2019

Here is a sample file.

It apparently load the headers fine, but try to print the last column name and you will see the error.
It somehow concatenate previous column names.

sample.csv.gz

Im using the single header file

@vincentlaucsb
Copy link
Owner

The header row doesn't end with a ;, but all the other rows do. As a result, the CSV reader interprets all of the data as being oversized (one column too big) so it discards them. You can deal with this by adding a semi-colon to the end of the header row (easiest) or by overriding CSVReader's behavior.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants