Dodma

Untitled

Apr 28th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. games.loc[games['name']=='None','name'] = 'Unknown'
  2. games['name'].drop_duplicates().reset_index(drop=True)
  3. games.info()
  4.  
  5.  
  6. AttributeError Traceback (most recent call last)
  7. <ipython-input-51-b656fd779a62> in <module>
  8. ----> 1 games.loc[games['name']=='None','name'] = 'Unknown'
  9. 2 games['name'].drop_duplicates().reset_index(drop=True)
  10. 3 games.info()
  11.  
  12. AttributeError: 'Index' object has no attribute 'loc'
Add Comment
Please, Sign In to add comment