使用 Matplotlib 向图形中添加纹理


在这个程序中,我们将使用 matplotlib 库绘制条形图。使用 matplotlib 库解决与 matplotlib 相关的问题最重要的步骤是导入 matplotlib 库。语法为

import matplotlib.pyplot as plt

Pyplot 是一组命令风格函数,可以让 Matplotlib 像 MATLAB 一样工作。除了绘制条形图外,我们还将在图形中添加一些纹理。bar() 函数中的 'hatch' 参数用于定义条形的纹理

算法

Step 1: Define a list of values.
Step 2: Use the bar() function and define parameters like xaxis, yaxis, hatch.
Step 3: Plot the graph.

示例代码

import matplotlib.pyplot as plt

data_x = ['Mumbai', 'Delhi', 'Ahmedabad', 'Banglore']
data_y = [40, 35, 29, 32]

plt.xlabel("CITY")
plt.ylabel("POPULATION")
plt.title("BAR PLOT")
plt.bar(data_x, data_y, color='red', hatch = 'o')
plt.show()

输出

更新于: 16-Mar-2021

481 次浏览

开启你的 职业生涯

完成课程获得认证

入门
广告