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
In [164]: df = DataFrame(randn(10, 1))
In [165]: concat([df[0], df], axis=1)
throws an AttributeError. It should just say something about incompatible types in concat.
I wonder if it's worth allowing mixed types where it makes sense. E.g., concat-ing a Series and a DataFrame. It might be more consistent with the fact that Series is now an NDFrame.
The text was updated successfully, but these errors were encountered:
throws an
AttributeError
. It should just say something about incompatible types inconcat
.I wonder if it's worth allowing mixed types where it makes sense. E.g.,
concat
-ing aSeries
and aDataFrame
. It might be more consistent with the fact thatSeries
is now anNDFrame
.The text was updated successfully, but these errors were encountered: