Guest User

Untitled

a guest
Jan 13th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. a = [2.94, 3.63, 4.18, 4.99, 6.06, 7.05, 5.93, 3.93, 3.15, 2.9, 3.59, 2.89, 2.18, 1.75, 1.68, 1.52, 1.29, 1.14, 1.06, 1.33, 1.07, 1.18, 1.26, 1.37, 1.41, 1.2, 1.13, 1.15, 1.15, 1.3, 1.23, 1.01, 1.24, 0.97, 1.08, 0.98, 0.83, 0.72, 0.7, 0.68, 0.7, 0.61, 0.74, 0.92, 0.75, 1.0, 1.21, 1.51, 0.87, 0.84, 0.85, 0.78]
  3. print(len(a))
  4. _ = plt.hist(a, bins=52)
  5. plt.title("Гистограмма коэффициентов конверсии")
  6.  
  7. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment