美文网首页
子图制作

子图制作

作者: tutu_tutu | 来源:发表于2018-10-10 20:49 被阅读0次

matplotlib 入门学习
1.子图绘制

直接上code

import matplotlib.pyplot as plt
import numpy as np
x = np.arange(100)
plt.subplot(221) # 图一 subplot() 在jupyter notebook 中 需要在一个cell里运行
plt.plot(x, x)
plt.subplot(222) #图二
plt.plot(x, x5)
plt.subplot(223) #图三
plt.plot(x, x
6)
plt.subplot(224) #图四
plt.plot(x, x**8)

image.png

相关文章

网友评论

      本文标题:子图制作

      本文链接:https://www.haomeiwen.com/subject/rfvmaftx.html