你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

matplot

2022/1/1 8:34:03

文章目录

  • 1.subplots

1.subplots

创建一个画布,将相关值画出来。

  • 代码
import numpy as np
import matplotlib.pyplot as plt

# fig :表示画布背景 ax:表示被x,y轴包围的部分
fig, ax = plt.subplots()
# 在(1,10)之间均匀生成数据,即将10-1=9分成19份,每份9/19=0.47368421
# 不断累加而成
x = np.linspace(start=1, stop=10, num=20)
# y = log(x)
y = np.log(x + 1)
# 将轴传入(x,y)值
ax.plot(x, y)
# 将画布传入
plt.show()
  • 结果
    在这里插入图片描述
  • 画布构成
    在这里插入图片描述