labels = ['강백호', '서태웅', '정대만']
values = [190, 187, 184]
colors = ['r', 'g', 'b']
ticks=['1번학생', '2번학생', '3번학생']
plt.bar(labels, values, color=colors, alpha = 0.5, width=0.5)
plt.ylim(175,195)
plt.xticks(labels, ticks, rotation='45', color='crimson', fontsize=40)
'파이썬. 데이터분석 > Matplotlib' 카테고리의 다른 글
matplotlib : 다중 막대 그래프 (0) | 2022.07.13 |
---|---|
matplotlib : 누적 막대그래프 (0) | 2022.07.12 |
지금까지 배운거 복습 : enumerate, grid, legend (0) | 2022.07.11 |
matplotlib : 선 그래프 여러개 그리기 (0) | 2022.07.10 |
matplotlib : 선그래프 색,marker, 배경색,linestyles (0) | 2022.07.10 |