Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.11.0
Description
Pandas allows whitespace before and after numbers in CSV files, but Arrow doesn't:
>>> s = b"a,b,c\n12 , 34 , 56\n" >>> pd.read_csv(io.BytesIO(s)) a b c 0 12 34 56 >>> csv.read_csv(io.BytesIO(s)).to_pandas() a b c 0 b'12 ' b' 34 ' b' 56'
Attachments
Issue Links
- links to