-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
BUG: to_string(header=False) should not shift the index w.r.t. the data #49230
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
Workaround: reset |
use print(df.to_string(header=False, index_names=False))
0 2
1 3 |
@vamsi-verma-s, thank you for pointing out the In my case I now updated my report: I expect |
take |
Note that >>> print(df.style.hide(axis="columns").to_string())
a
0 2
1 3
>>> print(df.style.hide(axis="columns").hide(axis="index", names=True).to_string())
0 2
1 3 |
Uh oh!
There was an error while loading. Please reload this page.
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
The code results in
Expected Behavior
Installed Versions
INSTALLED VERSIONS
commit : 91111fd
python : 3.9.2.final.0
python-bits : 64
OS : Linux
OS-release : 5.10.0-17-amd64
Version : #1 SMP Debian 5.10.136-1 (2022-08-13)
machine : x86_64
processor :
byteorder : little
LC_ALL : None
LANG : en_DK.UTF-8
LOCALE : en_DK.UTF-8
pandas : 1.5.1
numpy : 1.23.3
pytz : 2022.4
dateutil : 2.8.2
setuptools : 44.1.1
pip : 22.2.2
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : 7.34.0
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : 3.6.1
numba : None
numexpr : None
odfpy : None
openpyxl : 3.0.10
pandas_gbq : None
pyarrow : None
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : None
snappy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
xlwt : None
zstandard : None
tzdata : None
The text was updated successfully, but these errors were encountered: