set_tick_locator
Axis.set_major_locator(locator)
- Set the locator of the major ticker.
tick을 표시할 내용의 종류나 방법(단위 설정 등)을 설정
사용법
# x/y축의 major/minor locator 설정
ax.xaxis.set_major_locator(MultipleLocator(5))
ax.yaxis.set_minor_locator(MultipleLocator(5))
tick_locator 종류
set_tick
Axis.set_ticks(ticks, *, minor=False)
- Set this Axis' tick locations.
If necessary, the view limits of the Axis are expanded so that all given ticks are visible. - -> tick에 표시할 실제 수치(위치)를 설정
- Parameters
- ticks: list of floats
List of tick locations.
- ticks: list of floats
- -> tick의 위치 설정
- minor: bool, default: False
If False, set the major ticks; if True, the minor ticks.
- minor: bool, default: False
- -> major/minor tick 설정
- set_ticklabels으로 각 tick의 label도 설정 가능
사용법
# y축 tick 삭제
ax.set_yticks([])
# x축 tick을 math_grade의 index로 설정
ax.set_xticks(np.arange(len(math_grade)))
ax.set_xticklabels(math_grade.index)
- Matplotlib 눈금 표시하기: https://wikidocs.net/92089
- tick, label 설정: https://kongdols-room.tistory.com/84
'개발 및 공부 > 네이버 부스트캠프 AI Tech 2기' 카테고리의 다른 글
Python으로 Slack에 알림 보내기 (0) | 2021.09.01 |
---|---|
MLE(최대우도법)과 MAP(최대사후법) 정리 (0) | 2021.08.26 |
What is best cross-validation method? (0) | 2021.08.14 |
Weight initialize를 하는 이유? (0) | 2021.08.14 |
후기) 네이버 AI 부스트캠프 2기 합격 후기 (4) | 2021.08.04 |