-
Notifications
You must be signed in to change notification settings - Fork 1
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
decimal
-parameter for reading CSV-files?
#11
Comments
I will check but I'm not sure presently. Do you have a dataset you need to read w that format? |
In Germany (and in many other European countries) the comma-separated format is standard. So it's an every-day use-case. |
Ok. If you have an easily accessible small dataset, please pass it along so I can begin testing with it as I figure out what csv.jl offers and how to make tidierfiles support it. If not no worries I'll find one to use |
This is an example with three columns A, B and C, where B and C are floating-point numbers using a comma-separator. The column-separator in these files is a semicolon (so that there isn't a confusion with the comma-separator within the floating-point numbers). |
ok, so there is an argument in csv.jl to choose what the decimal is.
and then add options to |
with v.1.2 which i should be on the registry in 20 mins or so
please reopen/let us know if you run into issues / want additional features |
Wow, that went fast! Thank you very much 😊👍 |
Is there a
decimal
-parameter (as in CSV.jl) to specify if the fractional part of decimal numbers is separated by '.' (like 3.14) or by ',' (like 3,14) when reading CSV files?The text was updated successfully, but these errors were encountered: