-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
bug using read_excel
and index_col
option
#18792
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
Comments
read_excel
and index_col
option
Re-read my issue; I believe this should be tagged as a bug. Cheers! |
hi guys, i have this issue, but only when running coverage. i used [ python -m pytest ] which eventually reads attached file without index imported from file. then i tried to use [ coverage -m pytest ], which does import it from file.
Result:
pip freeze: |
Code Sample, a copy-pastable example if possible
Example 1 (weird column/value assignment)
Example 2 (index_col=None seems not to work)
Problem description
The
index_col
option inpd.read_excel
seems not to behave properly when the first column name is missing (for example, when a file is written usingto_excel(..., index=True)
).Example 1
We end up with a DataFrame where the data for
col2
was originally the data belowcol1
. This does not seem intuitive.Example 2
It seems like the
index_col=None
option does not work. The first column of the file is treated as the DataFrame index.Expected Output
Example 1
If column names are not specified, I would expect the data assigned to
col1
to be that belowcol1
in the original excel file (same forcol2
). Something like this:Example 2
I would expect the newly read tab to look somewhat like this (as is the case when doing the same operations using
write_csv
andread_csv
):Output of
pd.show_versions()
INSTALLED VERSIONS
commit: None
python: 3.5.2.final.0
python-bits: 64
OS: Linux
OS-release: 4.8.0-58-generic
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: fr_FR.UTF-8
LOCALE: fr_FR.UTF-8
pandas: 0.21.1
pytest: 3.1.2
pip: 9.0.1
setuptools: 37.0.0
Cython: 0.25.2
numpy: 1.13.3
scipy: 0.19.1
pyarrow: None
xarray: None
IPython: 6.1.0
sphinx: 1.6.3
patsy: None
dateutil: 2.6.1
pytz: 2017.3
blosc: None
bottleneck: None
tables: None
numexpr: 2.6.2
feather: None
matplotlib: 2.0.2
openpyxl: None
xlrd: 1.0.0
xlwt: 1.3.0
xlsxwriter: 0.7.3
lxml: None
bs4: None
html5lib: 0.999999999
sqlalchemy: None
pymysql: None
psycopg2: None
jinja2: 2.9.6
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
The text was updated successfully, but these errors were encountered: