Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed concatenation of pandas indexes (+ operator deprecated)
The Index set operations + and - were deprecated in order to provide these for numeric type operations on certain index types. + can be replaced by .union() or |, and - by .difference(). Further the method name Index.diff() is deprecated and can be replaced by Index.difference() (GH8226) pandas-dev/pandas#8226
- Loading branch information