如何在Matplotlib中为我的柱形图和扇形图添加纹理?
我们可以采取以下步骤来为柱形图和扇形图添加纹理:
- 设置图形大小并调整子图之间和环绕子图的间距。
-
创建一个新图形或使用 figure() 方法激活现有图形。
-
将一个轴添加到图形作为子图布局的一部分。
-
制作纹样列表。柱形可以填充某些纹样。
-
创建与纹样数量相当的柱形。
-
使用 bar() 方法绘制拥有不同纹样的柱形。
-
显示图形时,使用 show() 方法。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams ["figure.figsize"] = [7.50,3.50]
plt.rcParams ["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(111)
textures = ["//", "*", "o", "d", "."]
for i in range(len(textures)):
ax.bar(i, np.random.randint(1, 5), color = "green", edgecolor = "black", alpha = 0.3, hatch = textures [i])
plt.show()