Advertisement
Dodma

Untitled

May 6th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. since2012top.query('platform == "PS4"').plot(x='user_score', y='total_sales', kind='scatter', xlim=(0, 10))
  2. plt.title('Корреляция между оценками пользователей и продажами')
  3. plt.xlabel('Пользовательский рейтинг')
  4. plt.ylabel('Суммарные продажи')
  5. since2012top.query('platform == "PS4" and critic_score != 101').plot(x='critic_score', y='total_sales', kind='scatter')
  6. plt.title('Корреляция между оценками критиков и продажами')
  7. plt.xlabel('Оценка критиков')
  8. plt.ylabel('Суммарные продажи')
  9.  
  10. 'c' argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping will have precedence in case its length matches with 'x' & 'y'. Please use a 2-D array with a single row if you really want to specify the same RGB or RGBA value for all points.
  11. 'c' argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping will have precedence in case its length matches with 'x' & 'y'. Please use a 2-D array with a single row if you really want to specify the same RGB or RGBA value for all points.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement