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
Is your feature request related to a problem? Please describe.
Concat automatically handles typecasting between to decimal columns to decide the precision and scale of the output resulting decimal column during concat. There is implicit typecasting between other numeric column types as well (float32/64 and ints). However it isn't possible to concat between float and decimal columns in a dataframe.
Is your feature request related to a problem? Please describe.
Concat automatically handles typecasting between to decimal columns to decide the precision and scale of the output resulting decimal column during concat. There is implicit typecasting between other numeric column types as well (float32/64 and ints). However it isn't possible to concat between float and decimal columns in a dataframe.
Describe the solution you'd like
ValueError: All columns must be the same type
Describe alternatives you've considered
Alternative is to cast explicitly before concat
Additional context
N/A
The text was updated successfully, but these errors were encountered: