You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG: When compute.use_numba is enabled, pandas.DataFrame.info() will raise an error due to a data type issue with pandas.core.frame.DataFrameInfo.dtype_counts.
#51922
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.
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
importpandasaspdpd.set_option('compute.use_numba', True)
df=pd.DataFrame([[1, 2], [3, 4]])
df.info()
"""...ValueError: Unknown format code 'd' for object of type 'float'"""
Issue Description
I'm sorry to inform you that my current pandas environment can only be updated to version 1.5.2, and this bug exists in this version. If the bug has been fixed in version 1.5.3, I will wait for the maintainers to update it.
The count of data types in the dtype Series has changed from int to float. This causes an error in the code called by the DataFrame.info() function.
779 def add_dtypes_line(self) -> None:
780 """Add summary line with dtypes present in dataframe."""
781 collected_dtypes = [
--> 782 f"{key}({val:d})" for key, val in sorted(self.dtype_counts.items())
783 ]
784 self._lines.append(f"dtypes: {', '.join(collected_dtypes)}")
ValueError: Unknown format code 'd' for object of type 'float'
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
I'm sorry to inform you that my current pandas environment can only be updated to version 1.5.2, and this bug exists in this version. If the bug has been fixed in version 1.5.3, I will wait for the maintainers to update it.
When compute.use_numba is disabled,
When compute.use_numba is enabled,
The count of data types in the dtype Series has changed from int to float. This causes an error in the code called by the DataFrame.info() function.
Expected Behavior
Installed Versions
INSTALLED VERSIONS
commit : 8dab54d
python : 3.9.0.final.0
python-bits : 64
OS : Linux
OS-release : 4.18.0-348.7.1.el8_5.x86_64
Version : #1 SMP Wed Dec 22 13:25:12 UTC 2021
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.None
pandas : 1.5.2
numpy : 1.23.5
pytz : 2022.7
dateutil : 2.8.2
setuptools : 65.6.3
pip : 23.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.9.1
html5lib : None
pymysql : 1.0.2
psycopg2 : None
jinja2 : 3.1.2
IPython : 8.8.0
pandas_datareader: None
bs4 : 4.11.1
bottleneck : 1.3.5
brotli :
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : 3.6.2
numba : 0.56.4
numexpr : 2.8.4
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 8.0.0
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : 1.10.0
snappy : None
sqlalchemy : 2.0.3
tables : None
tabulate : None
xarray : None
xlrd : None
xlwt : None
zstandard : None
tzdata : 2022.7
The text was updated successfully, but these errors were encountered: