Question:
I am trying to identify Ethereum addresses in my dataframe that are not only buyers but also seller. The dataframe consists of transactions with that have the following variables:hash, seller, buyer, ethamount, buyerid, date, price, dollvalue

I want to remove all rows that have a buyer or seller address that is unique in the dataset, meaning it is only involved in one transaction.I tried this in excel but it is far too slow since my original dataset has more than three million rows.
Answer:
You could create a vectorkeep
that holds the ids of sellers/buyers that occur more than once; then use that to filter the rows of the tableIf you have better answer, please add a comment about this, thank you!