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
{{ message }}
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
How to compare each and every row with every row in same column and delete matching rows with ratio > 90
For example i have dataframe like
Pdf Content Page no
July 20, 2017.PDF Hello 24.0
July 20, 2017.PDF Hi 20.0
July 2, 2018.PDF Hey 21.0
July 2, 2018.PDF Helloo 10.0
July 2, 2018.PDF Hii 11.0
I'm exptecting output like if the each and every matches with ration above 90, then the row must be removed and the expected output is
Pdf Content Page no
July 20, 2017.PDF Hello 24.0
July 20, 2017.PDF Hi 20.0
July 2, 2018.PDF Hey 21.0
I'm trying the below code, but it's just returning the matching ratio
How to compare each and every row with every row in same column and delete matching rows with ratio > 90
For example i have dataframe like
I'm exptecting output like if the each and every matches with ration above 90, then the row must be removed and the expected output is
I'm trying the below code, but it's just returning the matching ratio
The text was updated successfully, but these errors were encountered: