如何在 Matplotlib 中自訂刻度標籤外觀:字體大小和旋轉?

Susan Sarandon
發布: 2024-10-31 00:20:02
原創
268 人瀏覽過

How to Customize Tick Label Appearance in Matplotlib: Font Size and Rotation?

如何在 Matplotlib 中修改刻度標籤外觀

在 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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板