matplotlib

折线图

import matplotlib.pylab as pylab
import numpy
# 折线图
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
# plot(x, y, 展现形式)
pylab.plot(x, y)
pylab.show()

在这里插入图片描述

散点图

import matplotlib.pylab as pylab
import numpy
# 折线图/散点图plot
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
pylab.plot(x, y, 'o')
pylab.show()

在这里插入图片描述

改变颜色

import matplotlib.pylab as pylab
import numpy
# 折线图/散点图plot
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
'''
c-cyan--青色
r-red--红色
m-magente--品红
g-green--绿色
b-blue--蓝色
y-yellow--黄色
k-black--黑色
w-white--白色
'''
pylab.plot(x, y, 'or')
pylab.show()

线条样式

import matplotlib.pylab as pylab
import numpy
# 折线图/散点图plot
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
'''
- 直线
-- 虚线
-. -.形式
: 细小虚线
'''
pylab.plot(x, y, ':')
pylab.show()

改变散点图点的样式

import matplotlib.pylab as pylab
import numpy
# 折线图/散点图plot
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
'''
s--方形
h--六角形
H--六角形
*--星形
+--加号
x--x形
d--菱形
D--菱形
p--五角形
'''
pylab.plot(x, y, 'p')
pylab.show()

加上标题坐标名

import matplotlib.pylab as pylab
import numpy
# 折线图/散点图plot
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
pylab.plot(x, y)
pylab.title('show')
pylab.xlabel('ages')
pylab.ylabel('temp')
pylab.show()

在这里插入图片描述

自定义x、y轴范围

pylab.xlim(0, 20)
pylab.ylim(5, 18)

同一区域回绘制多个折线

import matplotlib.pylab as pylab
import numpy

# 折线图/散点图plot
x = [1, 2, 3, 4, 8]
y = [5, 7, 2, 1, 5]
x2 = [1, 3, 6, 8, 10, 12, 19]
y2 = [1, 6, 9, 10, 19, 23, 35]
pylab.plot(x, y)
pylab.plot(x2, y2)
pylab.show()

在这里插入图片描述

直方图

生成随机数

随机数生成只是参考http://mamicode.com

import numpy

# random_integers(最小值, 最大值, 个数)
nums = numpy.random.randint(0, 21, 10)
print(nums)

生成具有正态分布的随机数

import numpy
# 生成正态分布随机数
# normal(均属, 西格玛,个数)
data = numpy.random.normal(5.0, 2.0, 10)
print(data)

# result
[ 2.53510641  2.16934431  5.01168189  6.02444439  6.71721442  3.69784716
 -0.02018805  1.48548721  5.24752967  5.64199559]

绘制直方图

from matplotlib import pylab
import numpy

# 生成随机数
data = numpy.random.normal(10.0, 1.0, 10000)
pylab.hist(data)
pylab.show()

在这里插入图片描述

data = numpy.random.randint(1, 25, 1000)

在这里插入图片描述

设置直方图宽度、上下线

from matplotlib import pylab
import numpy
# 设置直方图宽度、上下线
style = numpy.arange(2, 30, 2)
data = numpy.random.randint(1, 25, 1000)
pylab.hist(data, style)
pylab.show()

添加取消轮廓

pylab.hist(data, style, histtype='stepfilled') 

子图

subplot

from matplotlib import pylab
import numpy
# subplot(行, 列, 当前区域)
data = numpy.random.randint(1, 25, 100)
pylab.subplot(2, 2, 3)
pylab.show()

在这里插入图片描述

在子图中绘图

from matplotlib import pylab
import numpy

# subplot(行, 列, 当前区域)
data = numpy.random.randint(1, 25, 100)
# 在子图中绘制
# 两行,第一行两列,第二行一列
# 第一行
pylab.subplot(2, 2, 1)
pylab.subplot(2, 2, 2)
# 第二行
pylab.subplot(2, 1, 2)
pylab.show()

在这里插入图片描述

from matplotlib import pylab
import numpy

# subplot(行, 列, 当前区域)
data = numpy.random.randint(1, 25, 100)
# 在子图中绘制
# 两行,第一行两列,第二行一列
# 第一行
pylab.subplot(2, 2, 1)
x1 = [1, 2, 3, 4, 5]
y1 = [1, 2, 3, 4, 5]
pylab.plot(x1, y1)
pylab.subplot(2, 2, 2)
x2 = [5, 2, 3, 8, 6]
y2 = [7, 9, 12, 14, 6]
pylab.plot(x2, y2)
# 第二行
pylab.subplot(2, 1, 2)
x3 = [5, 6, 7, 10, 19, 29]
y3 = [6, 2, 4, 21, 5, 9]
pylab.plot(x3, y3)
pylab.show()

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值