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
As this is inconcistent with how DataFrame concat's work (its a different code-path), so needs updating
s = Series(list('abc'),dtype='category')
s2 = Series(list('abd'),dtype='category')
# this should raise
pd.concat([s,s2])
# this should be a category
pd.concat([s,s])
The text was updated successfully, but these errors were encountered:
xref #8640
As this is inconcistent with how DataFrame concat's work (its a different code-path), so needs updating
The text was updated successfully, but these errors were encountered: