python 柱状图 居中_python matplotlib模块: bar(柱状图)

plt模块的bar方法可以帮助我们绘制竖着的柱状图。

功能非常强大, 使用起来非常简单, 详细注释放在源码。

其中各种颜色的hex值可以从:

各种颜色hex值获取

源码:

# coding=utf-8

from matplotlib import pyplot as plt

import numpy as np

plt.style.use('fivethirtyeight')

# 可以查看所有可供使用的展示风格

# print(plt.style.available)

dev_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]

# 创建一维的等差数列, 是一个ndarray对象, 类似于[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ....]

x_indexes = np.arange(len(dev_x))

dev_y = [38496, 42000, 46752, 49320, 53200,

56000, 62316, 64928, 67317, 68748, 73752]

py_dev_y = [45372, 48876, 53850, 57287, 63016,

65998, 70003, 70000, 71496, 75370, 83640]

js_dev_y = [37810, 43515, 46823, 49293, 53437,

56373, 62375, 66674, 68745, 68746, 74583]

# 设置每个柱状体(bar)的宽度

width = 0.25

# 这个数据集设置的柱状体颜色是绿色, 放置在x轴的0-0.25, 1-0.25, 2-0.25, ...位置上(也就是在中间柱体紧邻的左边), 宽度0.25

plt.bar(x_i

你可能感兴趣的:(python,柱状图,居中)