Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

使用matplotlib绘制条形图的步骤其实和绘制散点图差不多,只是调用了不同的方法而已.那么下面我粘贴上代码: 123456789101112131415161718# coding=utf-8from matplotlib import pyplot as pltfrom matplotlib import font_manager# 设置字体myfont = font_manager....

使用matplotlib绘制散点图使用pyplot.scatter方法绘制散点图,其他步骤和绘制折线图基本没有什么不同。 下面是代码: 1234567891011121314151617181920212223242526272829303132333435363738from matplotlib import pyplot as pltfrom matplotlib import fon...

1.基本绘图

使用matplotlib库绘制折线图,由于很简单,所以下面直接上代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from matplotlib import pyplot


# 数据在x轴位置,是一个可迭代对象
x = range(2, 26, 2)
# 数据在y轴的位置
y = [15, 13, 14, 5, 17, 20, 25, 26, 26, 24, 22, 18]
# x和Y的长度必须相等,如果不相等会报错
print(len(x))
print(len(y))
# 绘图
pyplot.plot(x, y)
# 展示
pyplot.show()

效果图如下:

image-20200528092144373

image


愿火焰指引你