matplotlib画图1

本文介绍如何利用Python中的Matplotlib库绘制带有多个数据系列的分组柱状图,并通过具体代码实例展示了如何设置图表尺寸、网格、柱状图的颜色、标签等属性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


import numpy as np
import matplotlib.pyplot as plt

path = ''
N = 5
menMeans = (20, 35, 30, 35, 27)
womenMeans = (25, 32, 34, 20, 25)
girls = (12, 3, 45, 12, 4)
ind = np.arange(N)    # the x locations for the groups
width = 0.35       # the width of the bars: can also be len(x) sequence

plt.figure(figsize = (20, 10))  #调整大小
plt.grid() #画网格
p1 = plt.bar(ind, menMeans, width, color='#d62728',)
p2 = plt.bar(ind, womenMeans, width,
             bottom=menMeans, color='darkorange')
p3 = plt.bar(ind, girls, width,
             bottom=np.array(menMeans)+np.array(womenMeans), color='m')
plt.ylabel('Scores')
plt.title('Scores by group and gender')
plt.xticks(ind, ('G1', 'G2', 'G3', 'G4', 'G5'), ratation=90)  #ratation控制横坐标名称旋转
plt.yticks(np.arange(0, 81, 10))
plt.legend((p1[0], p2[0], p3[0]), ('Men', 'Women', 'girls'))

plt.show()  #如果要保存的画,去掉show
plt.savefig(path + 'statistic.png')

这里写图片描述

matplotlib plt 颜色

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值