yangyang12138

导航

2020年3月23日 #

plt画图工具(3d)

摘要: 1.3d图形 生成3d图的方式 fig = plt.figure()ax = fig.gca(projection='3d') 普通图形,设置x,y,z三个轴的数据 from matplotlib import cbook from matplotlib import cm from matplot 阅读全文

posted @ 2020-03-23 23:33 杨杨09265 阅读(1261) 评论(0) 推荐(1) 编辑

plt画图工具(二维图形)

摘要: 1.直线图 import numpy as np from matplotlib import pyplot as plt x = np.arange(1,11) y = 2 * x + 5 plt.title("Matplotlib demo") plt.xlabel("x axis captio 阅读全文

posted @ 2020-03-23 05:31 杨杨09265 阅读(595) 评论(0) 推荐(0) 编辑