ellesehc

Pacquiao Punch Stats

Apr 21st, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.55 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. rounds = range(1,13)
  3. smaller = [43.75,50,61.25,58.25,50.5,53.25,64,46,63,53,49.25,57.75]
  4. bigger = [55,76,74.5,84.75,80,82.25,80.5,86.25,83.25,93.25,87,69.25]
  5. plt.plot( rounds, smaller, linestyle = '-', color = 'r', label = 'Against smaller weltwerweights' )
  6. plt.plot(rounds, bigger, linestyle = '-', color = 'g', label = 'Against bigger weltwerweights')
  7. plt.ylabel('Punch numbers')
  8. plt.xlabel('Boxing rounds')
  9. plt.xticks(rounds)
  10. plt.title("Manny Pacquiao's average number of punches per round")
  11. plt.legend()
  12. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment