数据可视化:Matplotlib 绘制多个并列柱状图(调用MySQL数据)

第一:确保数据库有数据

在这里插入图片描述

第二:获取连接数据库获取数据:

#连接数据库开启游标获取数据
db = pymysql.connect(host='localhost',user='root',passwd='cbj123',port=3306,db='bigdata')
cur = db.cursor()
sql = 'select * from student'
cur.execute(sql)
see = cur.fetchall()

#定义空数据数组将数据库数据附上去
sname = []
chinese = []
math = []
english = []
for data in see:
    sname.append(data[0])
    chinese.append(data[1])
    math.append(data[2])
    english.append(data[3])
   ......
   ......
   ......
#关闭游标与数据库
cur.close()
db.close()

第三:绘制图形:

width = 0.2
index = np.arange(len(sname))

r1 = plt.bar(sname,chinese,width,color='r',label='chinese')
r2 = plt.bar(index+width,math,width,color='b',label='math')
r3 = plt.bar(index+width+width,english,width,color='c',label='english')

#显示图像
plt.legend()
plt.show()

结果如下图所示:

在这里插入图片描述

最后附上源代码:

import numpy as np
import matplotlib.pyplot as plt
import pymysql
#连接数据库开启游标获取数据
db = pymysql.connect(host='localhost',user='root',passwd='cbj123',port=3306,db='bigdata')
cur = db.cursor()
sql = 'select * from student'
cur.execute(sql)
see = cur.fetchall()
#定义空数据数组将数据库数据附上去
sname = []
chinese = []
math = []
english = []
for data in see:
    sname.append(data[0])
    chinese.append(data[1])
    math.append(data[2])
    english.append(data[3])

width = 0.2
index = np.arange(len(sname))

r1 = plt.bar(sname,chinese,width,color='r',label='chinese')
r2 = plt.bar(index+width,math,width,color='b',label='math')
r3 = plt.bar(index+width+width,english,width,color='c',label='english')

#显示图像
plt.legend()
plt.show()
cur.close()
db.close()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值