Guest User

Untitled

a guest
Feb 9th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. for i in range(iterations):
  2. radar_chart = pygal.Radar()
  3. radar_chart.title = 'V8 benchmark results'
  4. radar_chart.x_labels = ['Richards', 'DeltaBlue', 'Crypto', 'RayTrace', 'EarleyBoyer', 'RegExp', 'Splay', 'NavierStokes']
  5. radar_chart.add('Chrome', [6395, 8212, 7520, 7218, 12464, 1660, 2123, 8607])
  6. radar_chart.add('Firefox', [7473, 8099, 11700, 2651, 6361, 1044, 3797, 9450])
  7. radar_chart.add('Opera', [3472, 2933, 4203, 5229, 5810, 1828, 9013, 4669])
  8. radar_chart.add('IE', [43, 41, 59, 79, 144, 136, 34, 102])
  9. radar_chart.render()
  10.  
Advertisement
Add Comment
Please, Sign In to add comment