Skip to content

BUG: DataFrame html repr does not work for complex dtypes if DataFrame is empty #54167

Closed
@jasonboh

Description

@jasonboh

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

# %%
dfe1 = pd.DataFrame({"x": np.array([], dtype="complex")})
dfe1
# %%
dfe2 = pd.DataFrame({"x": np.array([], dtype="float")})
dfe2

Issue Description

The above example must be run in a Jupyter notebook so that the html repr method gets called. For the dfe1 empty DataFrame, the error is ValueError: max() arg is an empty sequence. For dfe2, everything works correctly and the html repr is shown.

Expected Behavior

dfe1 repr shoudl be same as dfe2 repr in a Jupyter notebook.

Installed Versions

INSTALLED VERSIONS

commit : 0f43794
python : 3.10.4.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19044
machine : AMD64
processor : Intel64 Family 6 Model 141 Stepping 1, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United States.1252

pandas : 2.0.3
numpy : 1.24.3
pytz : 2022.7.1
dateutil : 2.8.2
setuptools : 58.1.0
pip : 22.0.4
Cython : 0.29.33
pytest : 7.2.1
hypothesis : None
sphinx : 5.3.0
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 3.1.2
IPython : 8.10.0
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : None
fastparquet : None
fsspec : 2023.6.0
gcsfs : None
matplotlib : 3.7.0
numba : None
numexpr : None
odfpy : None
openpyxl : 3.1.2
pandas_gbq : None
pyarrow : 12.0.1
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : 1.10.1
snappy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None

Metadata

Metadata

Assignees

Labels

BugComplexComplex NumbersIO HTMLread_html, to_html, Styler.apply, Styler.applymapOutput-Formatting__repr__ of pandas objects, to_stringgood first issue

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions