import matplotlib.pyplot as plt
#创建数据
x = [4,5,6,7,8,9,11]
y = [5,9,10,11,13,16,17]
# 创建Figure类的对象fig 和Axes对象
fig=plt.figure
fig, ax = plt.subplots()
#绘制图表
ax.plot(x,y)
#展示图表
plt.show()
绘制柱形图:
import matplotlib.pyplot as plt
#创建数据
x = [1, 2, 3, 4, 5]
y = [10, 15, 7, 12, 9]
# 创建Figure类的对象fig 和Axes对象
fig=plt.figure
fig, ax = plt.subplots()
#绘制图表
ax.bar(x, y)
#展示图表
plt.show()