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
Using warnings.filterwarnings("ignore") does not disable this warning.
I use this function on a dataframe much bigger than the one in the example above and that results in a bunch of these warnings being displayed on the screen.
Could I please get help in disabling them? There are not many resources online on how to disable these kinds of warnings.
The text was updated successfully, but these errors were encountered:
@gajghaten Glad to help. But I think you should absolutely never use full index and always use blocking or sorted index. Full index will give (n choose 2 i.e. n*(n-1)/2) pairs, which increases quadratically with the number of records and slows down the record linkage or deduplication process significantly
Using warnings.filterwarnings("ignore") does not disable this warning.
I use this function on a dataframe much bigger than the one in the example above and that results in a bunch of these warnings being displayed on the screen.
Could I please get help in disabling them? There are not many resources online on how to disable these kinds of warnings.
The text was updated successfully, but these errors were encountered: