Advertisement
mironovichandrei

Untitled

Feb 18th, 2020
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # задаём настройки стилей для отрисовки в цикле
  2. line_styles = {'na_players': {'color': 'red', 'width': 4},
  3. 'eu_players': {'color': 'green', 'width': 3, 'dash': 'dash'},
  4. 'jp_players': {'color': 'blue', 'width': 2, 'dash': 'dot'},
  5. 'other_players': {'color': 'orange', 'width': 1, 'dash': 'dash'}}
  6.  
  7. #формируем графики для отрисовки
  8. data_games_by_year = []
  9. for column in line_styles.keys():
  10. data_games_by_year += [go.Scatter(x = games_grouped['year_of_release'],
  11. y = games_grouped[column],
  12. mode = 'lines',
  13. line = line_styles[...],
  14. name = column)]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement