Guest User

Untitled

a guest
Oct 19th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. d = ["24", "12", "60", "18", "36", "6", "10", "48", "30", "15"]
  2. value = [9,8,7,6,5,4,3,2,1,0]
  3. y_cumsum = np.cumsum(value)
  4. sns.barplot(d, value)
  5. sns.pointplot(d, y_cumsum)
  6. plt.show()
Add Comment
Please, Sign In to add comment