Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import pandas as pd
  2. hogwarts_points = pd.read_csv('/datasets/hogwarts_points_eng.csv')
  3. hogwarts_points['house'] = hogwarts_points['house'].fillna(value='Gryffindor')
  4. print ('Total points for Hogwarts:', hogwarts_points['points'].sum())
  5. print ('Total points by house:', hogwarts_points.groupby('house')['points'].sum())
  6. print ('The Cup goes to', hogwarts_points.groupby('house')['points'].sum().idxmax())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement