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
Series._logical_method passes align_asobject=True to _align_for_op, which DataFrame does not.
The net effect of this is in some ways analogous to DataFrame._arith_method doing _arith_method_with_reindex to only operate on the intersection of columns and then reindexing the result. Maybe we could do something similar on the Series method instead of casting.
Regardless, the behaviors should match.
The text was updated successfully, but these errors were encountered:
Series._logical_method passes
align_asobject=True
to_align_for_op
, which DataFrame does not.The net effect of this is in some ways analogous to DataFrame._arith_method doing _arith_method_with_reindex to only operate on the intersection of columns and then reindexing the result. Maybe we could do something similar on the Series method instead of casting.
Regardless, the behaviors should match.
The text was updated successfully, but these errors were encountered: