Details
-
Sub-task
-
Status: In Progress
-
Major
-
Resolution: Unresolved
-
3.2.0
-
None
-
None
Description
When reading csv file in pandas, pandas automatically detect the thousand separator if `thousands` argument is specified.
>>> pd.read_csv(path, sep=";") name age job money 0 Jorge 30 Developer 1,000,000 1 Bob 32 Developer 1000000 >>> pd.read_csv(path, sep=";", thousands=",") name age job money 0 Jorge 30 Developer 1000000 1 Bob 32 Developer 1000000
However, pandas-on-Spark doesn't support it.