맞춤 티커 #

matplotlib.ticker모듈은 많은 프리셋 티커를 정의하지만 기본적으로 확장성, 즉 사용자 정의 티커를 지원하도록 설계되었습니다.

이 예제에서는 사용자 정의 함수를 사용하여 y축에서 수백만 달러 단위의 눈금 서식을 지정합니다.

import matplotlib.pyplot as plt


def millions(x, pos):
    """The two arguments are the value and tick position."""
    return '${:1.1f}M'.format(x*1e-6)


fig, ax = plt.subplots()
# set_major_formatter internally creates a FuncFormatter from the callable.
ax.yaxis.set_major_formatter(millions)
money = [1.5e5, 2.5e6, 5.5e6, 2.0e7]
ax.bar(['Bill', 'Fred', 'Mary', 'Sue'], money)
plt.show()
커스텀 티커1

참조

다음 함수, 메서드, 클래스 및 모듈의 사용이 이 예제에 표시됩니다.

Sphinx-Gallery에서 생성한 갤러리