📌  相关文章
📜  如何更改 Matplotlib 中轴标签的大小?

📅  最后修改于: 2022-05-13 01:55:49.216000             🧑  作者: Mango

如何更改 Matplotlib 中轴标签的大小?

Matplotlib是一个很棒的数据绘图工具。它用于可视化数据,也用于在演示文稿中向您的团队展示数据或供您自己将来参考。因此,在呈现时可能会发生“X-label”和“y-label”不可见的情况,因此,我们可能想要更改其字体大小。因此,在本文中,我们将了解如何在 Matplotlib 中更改轴标签的大小。

在开始之前,让我们用 matplotlib 绘制一个简单的图。

Python3
import matplotlib.pyplot as plt
  
x = [1, 2, 3, 4, 5]
y = [9, 8, 7, 6, 5]
  
fig, ax = plt.subplots()
ax.plot(x, y)
  
ax.set_xlabel('x-axis')
ax.set_ylabel('y-axis')
  
plt.show()


Python3
import matplotlib.pyplot as plt
  
x = [1, 2, 3, 4, 5]
y = [9, 8, 7, 6, 5]
  
fig, ax = plt.subplots()
ax.plot(x, y)
ax.plot(x, y)
  
ax.set_xlabel('x-axis', fontsize = 12)
ax.set_ylabel('y-axis', fontsize = 10)
  
plt.show()


Python3
import matplotlib.pyplot as plt
  
x = [1, 2, 3, 4, 5]
y = [9, 8, 7, 6, 5]
  
fig, ax = plt.subplots()
ax.plot(x, y)
ax.plot(x, y)
  
plt.xticks(fontsize = 15)
plt.show()


输出

现在我们将看到如何更改轴标签的大小:

示例 1:更改两个轴标签。

 如果我们想改变轴标签的字体大小,我们可以使用参数“fontsize”并将其设置为您想要的数字。

蟒蛇3

import matplotlib.pyplot as plt
  
x = [1, 2, 3, 4, 5]
y = [9, 8, 7, 6, 5]
  
fig, ax = plt.subplots()
ax.plot(x, y)
ax.plot(x, y)
  
ax.set_xlabel('x-axis', fontsize = 12)
ax.set_ylabel('y-axis', fontsize = 10)
  
plt.show()

输出

示例 2:更改y 轴标签。

蟒蛇3

import matplotlib.pyplot as plt
  
x = [1, 2, 3, 4, 5]
y = [9, 8, 7, 6, 5]
  
fig, ax = plt.subplots()
ax.plot(x, y)
ax.plot(x, y)
  
plt.xticks(fontsize = 15)
plt.show()

输出

这里 X 值的字体大小设置为 15