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

Disable nan transformation in loaders.LoadCSV #700

Open
benjaminsznajder opened this issue Mar 21, 2024 · 1 comment
Open

Disable nan transformation in loaders.LoadCSV #700

benjaminsznajder opened this issue Mar 21, 2024 · 1 comment
Assignees

Comments

@benjaminsznajder
Copy link
Collaborator

Currently, we use pd.read_csv() for loading csv file.

It causes that empty cells in a csv file are transformed to nan (which is not suited)

The fix is simple:

pd.read_csv('test.csv', keep_default_na=False)

@yoavkatz
Copy link
Member

Makes sense. Can you create a PR?

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

3 participants