Description
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
import numpy as np
import pandas as pd
# List of fixed-length strings
fixed_strings = ["apple", "banana", "orange", "grape"]
# Define the fixed length for the strings
string_length = 6 # Adjust as needed
# Create NumPy array of fixed-length strings
arr = np.array(fixed_strings, dtype=f"S{string_length}")
df = pd.DataFrame(pd.Series(arr), columns=["fruit"])
# Raises NotImplementedError: |S6
df.set_index("fruit", inplace=True)
Issue Description
The issue shown in the provided code is that when attempting to set the index of the Pandas DataFrame using df.set_index("fruit", inplace=True)
, a NotImplementedError
is raised with the message |S6
.
The reason for this error is that the dtype |S6
is not supported as an index type in Pandas. When you create a NumPy array with a dtype of fixed-length strings using np.array() and attempt to set it as an index in a DataFrame, Pandas tries to convert it to a suitable index type, but |S6
is not recognized as a valid option for the index.
This is applicable to all S
dtypes. The offending logic was introduced in pandas 2.2.1 by these lines of this commit: b6fb905#diff-fb8a9c322624b0777f3ff7e3ef8320d746b15a2a0b80b7cab3dfbe2e12e06daaR239-R240
The code works as expected in pandas 2.2.0.
Expected Behavior
What happens when using 2.2.0:
import numpy as np
import pandas as pd
# List of fixed-length strings
fixed_strings = ["apple", "banana", "orange", "grape"]
# Define the fixed length for the strings
string_length = 6 # Adjust as needed
# Create NumPy array of fixed-length strings
arr = np.array(fixed_strings, dtype=f"S{string_length}")
df = pd.DataFrame(pd.Series(arr), columns=["fruit"])
df.set_index("fruit", inplace=True)
print(df)
Prints:
Empty DataFrame
Columns: []
Index: [b'apple', b'banana', b'orange', b'grape']
Installed Versions
INSTALLED VERSIONS
commit : bdc79c1
python : 3.11.1.final.0
python-bits : 64
OS : Linux
OS-release : 6.6.10-76060610-generic
Version : #202401051437170472813122.04~24d69e2 SMP PREEMPT_DYNAMIC Mon J
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_GB.UTF-8
LOCALE : en_GB.UTF-8
pandas : 2.2.1
numpy : 1.26.4
pytz : 2024.1
dateutil : 2.8.2
setuptools : 67.7.2
pip : 24.0
Cython : None
pytest : 7.4.4
hypothesis : None
sphinx : None
blosc : None
feather : 0.4.1
xlsxwriter : None
lxml.etree : 4.9.3
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 3.1.2
IPython : 8.15.0
pandas_datareader : None
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : 4.12.2
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : 2023.10.0
gcsfs : None
matplotlib : 3.8.3
numba : 0.59.0
numexpr : 2.9.0
odfpy : None
openpyxl : 3.1.2
pandas_gbq : None
pyarrow : 15.0.0
pyreadstat : None
python-calamine : None
pyxlsb : None
s3fs : 2023.10.0
scipy : 1.12.0
sqlalchemy : 2.0.20
tables : 3.9.2
tabulate : 0.9.0
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None
None