matplotlib ----- 多子图, subplots
Posted 清源居士
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib ----- 多子图, subplots相关的知识,希望对你有一定的参考价值。
这一篇讲的比较详细.
http://matplotlib.org/examples/pylab_examples/subplots_demo.html
官方文档给出的subplots用法,
http://matplotlib.org/api/pyplot_api.html
其中设置子图大小, 参数参见下面代码
import matplotlib.pyplot as plt tPlot, axes = plt.subplots( nrows=4, ncols=1, sharex=True, sharey=False, gridspec_kw={‘height_ratios‘:[2,2,1,1]} ) tPlot.suptitle(‘node‘, fontsize=20) axes[0].plot(range(10),‘ro-‘) axes[1].plot(range(10),‘bo-‘) axes[2].plot(range(10),‘go-‘) axes[3].plot(range(10),‘mo-‘) plt.show()
以上是关于matplotlib ----- 多子图, subplots的主要内容,如果未能解决你的问题,请参考以下文章
Python使用matplotlib可视化散点图使用seaborn中的lmplot函数使用多子图可视化不同分组的散点图最优拟合线性回归曲线
plotly可视化绘制多子图(subplots)并自定义子图