matplot
文章目录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)
#
原创
2022-01-01 08:31:28 ·
1291 阅读 ·
0 评论