Guest User

Untitled

a guest
Jul 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. values = [1, 2, 5, 6, 6, 7, 7, 8, 8, 8, 9, 10, 21]
  2.  
  3. plt.boxplot(values)
  4. plt.yticks(range(1, 22))
  5. plt.ylabel("Value")
  6. plt.show()
Add Comment
Please, Sign In to add comment