美文网首页
In Matplotlib, what does the arg

In Matplotlib, what does the arg

作者: 宣雄民 | 来源:发表于2019-04-21 20:33 被阅读0次

It is always the best way to explain the complex idea as simple as we go along with some practices or illustration >.<


image.png
import matplotlib.pyplot as plt
fig = plt.figure()
fig.add_subplot(221)   #top left
fig.add_subplot(222)   #top right
fig.add_subplot(223)   #bottom left
fig.add_subplot(224)   #bottom right 
plt.show()

相关文章

网友评论

      本文标题:In Matplotlib, what does the arg

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