Untitled

From Unique Horse, 4 Months ago, written in Plain Text, viewed 100 times.
URL http://codebin.org/view/979f9e0f Embed
Download Paste or View Raw
  1.      
  2. pivot = data.groupby('platform')['total_sales'].agg(sum).sort_values(ascending=False).head()
  3. display(pivot)
  4.    
  5. top_five=['PS2', 'X360','PS3' ,'Wii' ,'DS' ]
  6.  
  7. for i in top_five:
  8.     data.query('platform == @i').plot(x='year_of_release',y='total_sales',kind='scatter', title=i)

Replies to Untitled rss

Title Name Language When
Re: Untitled Stained Sloth text 4 Months ago.

Reply to "Untitled"

Here you can reply to the paste above