Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2.  
  3. list_to_draw = []
  4.  
  5. for i in range(0,100):
  6. list_to_draw.append(i)
  7.  
  8. plt.boxplot(list_to_draw, showbox=True)
  9. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement