-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
DataFrame to_csv line_terminator inconsistency when using compression #25311
Comments
Hmm OK. Can you provide code to roundtrip back from the compressed file just so nothing is ambiguous here? |
I've the same problem. import pandas as pd
import numpy as np
d = pd.DataFrame(np.random.randint(1,10,size=(10,10)), columns=list('qwertyuiop'))
d.to_csv('foo.csv.gz', index=False) The saved files has two line terminators in each line
The saved file in the example: Saving without compression does works as expected. Setting the line_terminator resolves it It seems to be limited to Windows, I've tried on Linux and it does not have the same problem, using the same pandas version
INSTALLED VERSIONS
------------------
commit: None
python: 3.6.8.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 142 Stepping 10, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
pandas: 0.24.1 |
This looks like a duplicate of #25048. LMK if not. |
After carefully reading the details of #25048, it seems that sed task refers to a scenario where a file handler is passed to pandas.to_csv(). |
I believe that we create a file handler internally when we detect a
compression scheme, and so go down the same path as the other issue. Is
that right?
…On Wed, Mar 6, 2019 at 9:52 AM jointfull ***@***.***> wrote:
After carefully reading the details of *#25048
<#25048>*, it seems that sed
task refers to a scenario where a *file handler* is passed to
pandas.to_csv().
However, *in my case*, the call to pandas.to_csv() is with a filename
(and *not a file handler*), and behave different when giving a filename
that ends with .gz (inferring a request for a compressed file).
I believe we are talking about *two different problems* here (unless
proven that they originate from the same *bug* and that fixing one fixes
the other too).
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#25311 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABQHIqumnI1b7cUyMC7kgthzGp60Lylrks5vT-RagaJpZM4a6gZw>
.
|
I am pretty certain that these two issues are tied to the same underlying issue, so let's see what comes of #25048 and then return to this one if need be. |
👏 |
Code Sample, a copy-pastable example if possible
Problem description
Current line_terminator defaults when using compression and when not using compression are different (Windows OS, pandas 0.24.1).
When uncompressing the gzip file created using the default line_terminator, we can clearly see that the files are different (compressed-wrong-line-terminator.csv vs uncompressed.csv); only when using the explicit line_termintor='\n' the uncompressed file is identical to the not compressed file (compressed-good-line-terminator.csv.gz vs. uncompressed.csv).
It is emphasized that if we use the explicit line_terminator='\n' for non-compressed files, the output file is different than the ones created without explicit assignment of the line_terminator - forcing the user the need to explicitly specify the line_terminator only for compressed files.
This behavior is problematic, especially using the latest pandas version, where compression is inferred from the file extension, and one would expect that also the line_separator will undergo the same inference.
Expected Output
As stated above, it is expected that the command in python line 2 (after uncompressing it) will produce the same file as produced by the command in python line 1.
However, we see that only the command in python line 3 (after uncompressing it) produces the same file as produced by the command in python line 1.
Output of
pd.show_versions()
INSTALLED VERSIONS
commit: None
python: 3.6.4.final.0
python-bits: 64
OS: Windows
OS-release: 7
machine: AMD64
processor: Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
pandas: 0.24.1
pytest: None
pip: 19.0.1
setuptools: 40.4.3
Cython: None
numpy: 1.15.2
scipy: 1.0.0
pyarrow: None
xarray: None
IPython: 6.2.1
sphinx: None
patsy: 0.5.0
dateutil: 2.6.1
pytz: 2017.3
blosc: None
bottleneck: None
tables: None
numexpr: None
feather: None
matplotlib: 3.0.0
openpyxl: 2.5.12
xlrd: 1.2.0
xlwt: None
xlsxwriter: None
lxml.etree: None
bs4: None
html5lib: 1.0.1
sqlalchemy: None
pymysql: None
psycopg2: None
jinja2: 2.10
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
gcsfs: None
The text was updated successfully, but these errors were encountered: