Skip to content
Advertisement

Python Dataframe Sum and Rank the Rows based on the group they belong

My df has USA states-related information. I want to rank the states based on its contribution.

My code:

JavaScript

Expected Answer: Compute state_capacity by summing state values from all years. Then Rank the States based on the state capacity

JavaScript

My approach: I am able to compute the state capacity using groupby. I ran into NaN when mapped it to the df.

JavaScript

Advertisement

Answer

Try with transform then rank

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement