I have a pandas dataframe that consists of multiple series. I want to get one series by name, but for the life of me can't figure out how to do it.
Dataframe:
         user_id  name    
gender                                                       
male       1      John 
female     2     Abigal
I want to get the name of the male series. Something like df['male'].name
Thank you!
 
    