I'm trying to take the 3 highest observations for each index. For instance, I have
census=pd.Series([2000,4432,5435,43252,63463,423432,3525,54353,6363])
census.index=['AL','AL','AL','AL','AK','AK','AK','AK','AK']
I want to get 3 highest observation for AL and AK and get it as a different series. Thanks.