matpotlib 画子图
最简单方式创建子图import numpy as npfrom matplotlib import pyplot as pltnp.random.seed(123456)# 随机生成1-20的随机数x = np.random.randint(1, 20, 20)xmax = x.max()xmin = x.min()xmax, xmin# 数据缩放到0-1的 区间xx = (x - xmin) / (xmax - xmin)# 2,1,1, 代表 画子图 2行1列第一 个位置#