Guest User

Untitled

a guest
Nov 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. df.groupby('croho subonderdeel').sum()
  2.  
  3. df.groupby('croho subonderdeel','2011 MAN').sum()
  4.  
  5. ValueError: No axis named 2011 MAN for object type <class 'pandas.core.frame.DataFrame'>
  6.  
  7. df.groupby('croho subonderdeel').sum('2011 MAN')
  8.  
  9. TypeError: f() takes 1 positional argument but 2 were given
  10.  
  11. df.groupby('croho subonderdeel')['2011 MAN'].sum()
Add Comment
Please, Sign In to add comment