pyplot 막대그래프

1 개요[ | ]

파이썬 막대그래프
pyplot 막대그래프
import matplotlib.pyplot as plt
x = ['Jan','Feb','Mar','Thr','Fri','Sat','Sun']
sales = [314,159,265,358,979,323,846]
plt.bar(x, sales)
plt.show()

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}