在 matplotlib 中,自訂刻度標籤的外觀增強了可視化的可讀性和美觀性。以下是調整刻度標籤字體大小和旋轉的詳細指南:
要修改刻度標籤的字體大小,請使用 tick_params() 方法中的 labelsize 參數。以下是範例:
<code class="python">import matplotlib.pyplot as plt # Create a figure and axis fig, ax = plt.subplots() # Change the font size of major (x-axis) and minor (y-axis) tick labels ax.tick_params(axis='x', which='major', labelsize=10) ax.tick_params(axis='y', which='minor', labelsize=8) # Show the plot plt.show()</code>
要將刻度標籤從水平旋轉為垂直,請使用tick_params() 方法中的rotation 參數。 90 度的旋轉值將使標籤垂直定向。
<code class="python">import matplotlib.pyplot as plt # Create a figure and axis fig, ax = plt.subplots() # Rotate the x-axis tick labels to 90 degrees ax.tick_params(axis='x', rotation=90) # Show the plot plt.show()</code>
請注意,並非所有刻度標籤都可以垂直放置,尤其是在空間有限的情況下。在這種情況下,請考慮調整間距或軸限制以適應旋轉的標籤。
以上是如何在 Matplotlib 中自訂刻度標籤外觀:字體大小和旋轉?的詳細內容。更多資訊請關注PHP中文網其他相關文章!