Duplicate rows
Last updated
Last updated
Due to the way the transaction parser works, duplicate rows may sometimes appear in the database. This is not an error but rather a feature of the parsing process, which sometimes processes the same transaction multiple times for accuracy.
In Python, duplicates can easily be removed using the drop_duplicates
function.
Learn more here: