plt 그래프 위에 숫자 레이블 표시하기

화이팅·2023년 5월 10일
0

eda

목록 보기
29/29
counts = review_null.review_score.value_counts()

fig, ax = plt.subplots()
bars = ax.bar(counts.index, counts.values)

plt.title('리뷰 안쓴 평점 분포')

for bar in bars:
    height = bar.get_height()
    ax.text(bar.get_x() + bar.get_width() / 2, height, str(int(height)), ha='center', va='bottom')

plt.show()

profile
하하...하.

0개의 댓글