I have a dataset in pandas that consists of nba game statistics.
The data looks something like this:
Date|Team 1|Team 2|Team1 Stats|...|Team2 Stats|...
Because of the way I scraped the data I have now two instances of each game, where the stats for each team are simply mirrored.
(All entries are equal just Team1 stats are in Team2 columns, and vice versa)
How do I find and remove the duplicate entries using pandas.
Team 1 < Team 2.