plt绘制子图
摘要:plt绘制子图 plt.subplot(221) # equivalent but more general # 子图1 ax1 = plt.subplot(2, 2, 1) # add a subplot with no frame # 子图2 ax2 = plt.subplot(222, fra
阅读全文
posted @
2021-11-03 19:41
cookie的笔记簿
阅读(2856)
推荐(0) 编辑
plt设置横纵坐标名称
摘要:#设置横纵坐标的名称以及对应字体格式 font2 = {'family' : 'Times New Roman', 'weight' : 'normal', 'size' : 15 } plt.xlabel('Year',font2) plt.ylabel('Citations',font2) fi
阅读全文
posted @
2021-11-03 19:38
cookie的笔记簿
阅读(1999)
推荐(0) 编辑