使用 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()
输出
广告