I have a list of labels.
I also have a pandas series that has multiple rows/items, some of which have their index labels in that list and some others have index labels not in that list.
I want to delete the rows/items of that series that have labels not in that list.
The only way I could come up with is to iterate on the series, check if the index label is in that list or not and delete it if not.
Is there any other easier way? And if not, could someone provide a code to do this way, as I also couldn't get it to work (not sure how to iterate on a series and how to compare its index labels to labels in a list).
Your help would be very appreciated.
You can use
Index.intersection
withloc
:Another posible solution with
isin
: