Entity Matching Model solves the problem of matching company names between two possibly very large datasets.
52
stars
4
forks
source link
np.array_split on pd.Series causing unavoidable deprecation warnings for Series.swapaxes #9
Closed
Rick-OConnor closed 6 months ago
As reported in this issue on from numpy, the use of np.array_split on a pandas object results in an unavoidable
This reply in the issue thread suggest an alternative solution to np.array_split, relying on
iloc
instead.