#스타일설정
plt.style.use('fivethirtyeight')
plt.figure(figsize=(15, 7))
plt.bar(x리스트, y리스트, width=0.5, edgecolor='black'
plt.xlabel('명칭', labelpad = 숫자, fontweight='bold', fontsize=15)
-plt.xlabel(fontsize=15)하면 에러. plt.xlabel('X축', fontsize=15) 이런식으로 명칭을 적어줘야 작동됨
plt.ylabel 동일
labelpad = xlabel이 그래프와 얼마나 떨어져있는지
plt.xticks(rotation=45, fontweight='bold'
'파이썬. 데이터분석 > Matplotlib' 카테고리의 다른 글
matplotlib bar : stateless방식 (0) | 2022.07.17 |
---|---|
★Matplotlib 매개변수 총정리 - stateless(ax.) (0) | 2022.07.17 |
matplotlib : ax. plt. 문법차이 (0) | 2022.07.16 |
matplotlib : plt.subplot 여러 그래프 동시에 보여주기 2 (0) | 2022.07.14 |
matplotlib : 산점도 scatter (0) | 2022.07.14 |