-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
BUG: Column 'Int8Dtype' casted to 'object' type when melted #41570
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
Thanks for the clear report @etiennekintzler! Issue persists on master, investigations to fix are welcome! (This looks like an issue with other |
Hi @mzeitlin11 After checking the function melt, it looks like the problem appears when the attribute pandas/pandas/core/reshape/melt.py Line 147 in 34b0bdc
For example df_int8d = pd.DataFrame({"a": [1, 2]}, dtype=pd.Int8Dtype())
print(repr(df_int8d._values.dtype)) returns As expected I don't know to what extent it is comparable with the attribute s = pd.Series(data=[1, 2], dtype=pd.Int8Dtype())
print(repr(s._values.dtype)) returns
Would be glad to contribute however I am not very familiar with the pandas internals ; would you have any idea of which source file I could look into ? I've just found this https://github.com/pandas-dev/pandas/blob/v1.2.4/pandas/core/arrays/integer.py#L605-L608 |
Not sure about the best way to approach fixing this. The problem is that for There's also the further issue that for a case like
keeping extension types would require invoking some find common type logic (maybe related to #22791) So for fixing this issue it isn't limited to Sorry I can't be of more help here - if you're looking to contribute you'd of course be welcome to look into this further (maybe someone with more experience with this part of the codebase has better suggestions for fixing this) but there are also tons of other issues which may be a more approachable starting point. |
[x ] I have checked that this issue has not already been reported.
[ x] I have confirmed this bug exists on the latest version of pandas.
(optional) I have confirmed this bug exists on the master branch of pandas.
Pandas's dtype
Int8Dtype
is converted toobject
when melted.Code Sample, a copy-pastable example
Problem description
When melted, the Int8 column is casted to object type.
Expected Output
melted.dtypes
should return:Output of ``pd.show_versions()
INSTALLED VERSIONS
commit : b5958ee
python : 3.7.0.final.0
python-bits : 64
OS : Linux
OS-release : 4.15.0-143-generic
Version : #147-Ubuntu SMP Wed Apr 14 16:10:11 UTC 2021
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8
pandas : 1.1.5
numpy : 1.19.4
pytz : 2020.5
dateutil : 2.8.1
pip : 21.0.1
setuptools : 54.1.2
Cython : None
pytest : 6.2.2
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.6.2
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.11.2
IPython : 7.19.0
pandas_datareader: None
bs4 : 4.9.3
bottleneck : 1.3.2
fsspec : None
fastparquet : None
gcsfs : None
matplotlib : 3.3.3
numexpr : None
odfpy : None
openpyxl : 3.0.6
pandas_gbq : None
pyarrow : None
pytables : None
pyxlsb : 1.0.8
s3fs : None
scipy : 1.5.4
sqlalchemy : 1.3.22
tables : None
tabulate : 0.8.7
xarray : None
xlrd : 2.0.1
xlwt : None
numba : 0.53.1
The text was updated successfully, but these errors were encountered: