文章目录
折线图
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()