Matplotlib 에서 눈금 레이블 글꼴 크기를 설정하는 방법
-
틱 레이블 글꼴 크기를 설정하는
plt.xticks(fontsize= )
-
틱 레이블 글꼴 크기를 설정하는
ax.set_xticklabels(xlabels, Fontsize= )
-
틱 레이블 글꼴 크기를 설정하는
plt.setp(ax.get_xticklabels(), Fontsize=)
-
틱 레이블 글꼴 크기를 설정하는
ax.tick_params(axis='x', Labelsize= )
이 튜토리얼 기사에서는 Matplotlib 에서 눈금 레이블 글꼴 크기를 설정하는 다양한 방법을 소개합니다. 그것은 포함합니다
plt.xticks(fontsize =)
ax.set_xticklabels(xlabels, fontsize =)
plt.setp(ax.get_xticklabels(), fontsize =)
ax.tick_params(axis = 'x', labelsize =)
다음 코드 예제에서 동일한 데이터 세트를 사용합니다.
위 그림을 작성하는 코드는 다음과 같습니다.
from matplotlib import pyplot as plt
from datetime import datetime, timedelta
xvalues = range(10)
yvalues = xvalues
fig, ax = plt.subplots()
plt.plot(xvalues, yvalues)
plt.grid(True)
plt.show()
틱 레이블 글꼴 크기를 설정하는 plt.xticks(fontsize= )
from matplotlib import pyplot as plt
from datetime import datetime, timedelta
xvalues = range(10)
yvalues = xvalues
fig, ax = plt.subplots()
plt.plot(xvalues, yvalues)
plt.xticks(fontsize=16)
plt.grid(True)
plt.show()
plt.xticks(fontsize=16)
plt.xticks
는 x 축의 눈금 위치 및 레이블의 속성을 가져 오거나 설정합니다.
fontsize
또는 size
는 Text
인스턴스의 신성이며, 사용할 수 있습니다 눈금 레이블의 글꼴 크기를 설정합니다.
틱 레이블 글꼴 크기를 설정하는 ax.set_xticklabels(xlabels, Fontsize= )
set_xticklabels
는 문자열 속성 목록과 함께 x-tick 레이블을 설정하고 Text
속성을 키워드 인수로 사용합니다. 여기서 fontfont 는 눈금 레이블의 글꼴 크기를 설정합니다.
from matplotlib import pyplot as plt
from datetime import datetime, timedelta
import numpy as np
xvalues = np.arange(10)
yvalues = xvalues
fig, ax = plt.subplots()
plt.plot(xvalues, yvalues)
plt.xticks(xvalues)
ax.set_xticklabels(xvalues, fontsize=16)
plt.grid(True)
plt.show()
틱 레이블 글꼴 크기를 설정하는 plt.setp(ax.get_xticklabels(), Fontsize=)
matplotlib.pyplot.setp
는 artist object에 속성을 설정합니다.
plt.setp(ax.get_xticklabels(), fontsize=)
는 xtick labels 객체의 fontsize 속성을 설정합니다.
from matplotlib import pyplot as plt
from datetime import datetime, timedelta
xvalues = np.arange(10)
yvalues = xvalues
fig, ax = plt.subplots()
plt.plot(xvalues, yvalues)
plt.setp(ax.get_xticklabels(), fontsize=16)
plt.grid(True)
plt.show()
틱 레이블 글꼴 크기를 설정하는 ax.tick_params(axis='x', Labelsize= )
tick_params
는 눈금, 눈금 레이블 및 눈금 선의 매개 변수를 설정합니다.
ax.tick_params(axis='x', labelsize= )
는 x
축, 즉 X 축에 눈금 레이블의 labelsize
속성을 설정합니다.
from matplotlib import pyplot as plt
from datetime import datetime, timedelta
xvalues = range(10)
yvalues = xvalues
fig, ax = plt.subplots()
plt.plot(xvalues, yvalues)
ax.tick_params(axis="x", labelsize=16)
plt.grid(True)
plt.show()
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook관련 문장 - Matplotlib Axes
- Matplotlib 에서 X 축 눈금 레이블 텍스트를 회전하는 방법
- Matplotlib에서 2 차 Y 축에 Y 축 레이블을 추가하는 방법
- Matplotlib에서 로그 축을 그리는 방법
- Matplotlib에서 동일한 축으로 정사각형 플롯을 만드는 방법
- Matplotlib에서 축의 한계를 설정하는 방법