matplotlib에서 글꼴 크기 및 방향과 같은 눈금 레이블 속성을 사용자 정의하는 것은 시각화를 최적화하는 데 중요합니다. Python에서 이러한 속성을 수정하려면 다음 기술을 고려하세요.
ax1.set_xticklabels()를 사용하여 눈금 레이블의 글꼴 크기를 줄이려면 다음 단계를 따르세요.
<code class="python">import matplotlib.pyplot as plt # Create a figure and axes fig, ax1 = plt.subplots() # Specify the label values labels = ['Label 1', 'Label 2', 'Label 3'] # Set the tick labels with a smaller font size ax1.set_xticklabels(labels, fontsize=8) # Display the plot plt.show()</code>
눈금 레이블을 가로에서 세로로 회전하려면 set_xticklabels() 함수에서 회전 인수를 활용하세요.
<code class="python"># Adjust the font size of tick labels ax1.tick_params(axis='x', which='major', labelsize=8) # Rotate the tick labels ax1.set_xticklabels(labels, rotation=90)</code>
또는 Tick_params 메소드를 사용하여 여러 눈금 레이블 속성을 동시에 조정할 수 있습니다.
<code class="python"># Set both major and minor tick label sizes ax1.tick_params(axis='both', which='major', labelsize=10) ax1.tick_params(axis='both', which='minor', labelsize=8) # Rotate the minor tick labels ax1.tick_params(axis='both', which='minor', rotation=45)</code>
위 내용은 Matplotlib에서 눈금 레이블 모양을 어떻게 사용자 정의할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!