ValueError:num必须为1< = num< = 2,而不是3

时间:2016-06-13 22:03:12

标签: python pandas boxplot

我使用dataframe生成了以下pivot_table

enter image description here

我正在使用以下代码boxplot多列:

    fig = plt.figure()
for i in range(0,25):
    ax = plt.subplot(1,2,i+1)
    toPlot1.boxplot(column='Score',by=toPlot1.columns[i+1],ax=ax)
fig.suptitle('test title', fontsize=20)
plt.show()

我期待如下输出:

enter image description here

但是这段代码给了我以下错误:

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-275-9c68ce91596f> in <module>()
      1 fig = plt.figure()
      2 for i in range(0,25):
----> 3     ax = plt.subplot(1,2,i+1)
      4     toPlot1.boxplot(column='Score',by=toPlot1.columns[i+1],ax=ax)
      5 fig.suptitle('test title', fontsize=20)

E:\Anaconda2\lib\site-packages\matplotlib\pyplot.pyc in subplot(*args, **kwargs)
   1020 
   1021     fig = gcf()
-> 1022     a = fig.add_subplot(*args, **kwargs)
   1023     bbox = a.bbox
   1024     byebye = []

E:\Anaconda2\lib\site-packages\matplotlib\figure.pyc in add_subplot(self, *args, **kwargs)
   1003                     self._axstack.remove(ax)
   1004 
-> 1005             a = subplot_class_factory(projection_class)(self, *args, **kwargs)
   1006 
   1007         self._axstack.add(key, a)

E:\Anaconda2\lib\site-packages\matplotlib\axes\_subplots.pyc in __init__(self, fig, *args, **kwargs)
     62                     raise ValueError(
     63                         "num must be 1 <= num <= {maxn}, not {num}".format(
---> 64                             maxn=rows*cols, num=num))
     65                 self._subplotspec = GridSpec(rows, cols)[int(num) - 1]
     66                 # num - 1 for converting from MATLAB to python indexing

ValueError: num must be 1 <= num <= 2, not 3

我相信这是因为一张图上只能有2个箱图?

有关如何解决此问题的任何想法?任何指针都将受到高度赞赏。

TIA。

1 个答案:

答案 0 :(得分:17)

请注意,您只生成两个子图:

GetIfEntry2

第一个参数是每行中的绘图数量,第二个参数是每列的绘图数量(另请参阅the matplotlib.pyplot.subplot documentation)。因此,您的案例中可用的总图数为:ax = plt.subplot(1,2,i+1) 。如果你想创建25,你可以使用:

1*2 = 2

每行5个图表,每列5个图表添加ax = plt.subplot(5,5,i+1)

的总数