python绘制柱状图

可以使用 Python 的 matplotlib 库来绘制柱状图。首先,安装 matplotlib 库:

pipinstall matplotlib

然后,在 Python 代码中导入 matplotlib 库:

import matplotlib.pyplot as plt

接下来,准备好要绘制的数据。这里以绘制有关某个城市不同月份的最高气温为例,假设有如下数据:

months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
temperatures = [32, 35, 28, 34, 29, 32]

然后,调用 matplotlib 库中的 bar 函数,传入两个参数:柱状图的 x 轴和 y 轴。在这个例子中,x 轴是月份,y 轴是最高气温。

plt.bar(months, temperatures)

最后,调用 show 函数显示图表:

plt.show()

完整代码如下:

import matplotlib.pyplot as plt

months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
temperatures = [32, 35, 28, 34, 29, 32]

plt.bar(months, temperatures)
plt.show()

你可能感兴趣的:(python,matplotlib,开发语言,数据分析,数据挖掘)