matplotlib.pyplot 绘图详解 matplotlib 安装

apt-get install python-matplotlib

转载自: http:
//www.cnblogs.com/qianlifeng/archive/2012/02/13/2350086.html

 

Basic:
import matplotlib.pyplot as pyplot

pyplot.bar(left= 1, height= 1)
pyplot.show()
参数解释:
left:柱形的左边缘的位置,如果我们指定1,那么柱形的左边缘的x值就是1了
height:这是柱形的高度,也就是y轴的高度了。
 
  

 


 

双柱形图
__author__ = 'dell'

import matplotlib.pyplot as pyplot

pyplot.bar(left = [0, 1], height = [1, 0.5])
pyplot.show()

参数解释:
left = [0, 1] 表示两个柱形,第一个的左边缘是0,第二个的左边缘是1
height 参数同理。

 

表明x轴是性别,y轴是数量
__author__ = 'dell'

import matplotlib.pyplot as pyplot

pyplot.xlabel('sex')
pyplot.ylabel('num')
pyplot.bar(left=[0, 1], height=[1, 0.5], width=0.35)
pyplot.show()

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值