无意中在Matplotlib中移动绘图

时间:2012-05-11 21:49:32

标签: python matplotlib

我在matplotlib中有一些奇怪的行为,我无法解释,我想知道是否有人能看到发生了什么。实质上发生的是我试图把过去两个数字放在一起。我这样做是通过创建两个GridSpec个对象,一个用于图的左半部分,另一个用于右边的对象。我画左手边并添加colorbar,但是当我在右侧选择我的第一个subplot时,左边的数字会在下向右移动彩条。如果您尝试执行不包括最后两行的示例代码,您将看到您所期望的内容,但如果您执行完整的操作,则左侧的图表会移动。发生了什么事?

import matplotlib.gridspec as gridspec
import numpy as np
import pylab as pl

scores = np.array([[ 0.32      ,  0.32      ,  0.32      ,  0.32      ,  0.32      ,
         0.32      ,  0.32      ,  0.32      ,  0.32      ],
       [ 0.32      ,  0.32      ,  0.32      ,  0.49333333,  0.85333333,
         0.92666667,  0.32      ,  0.32      ,  0.32      ],
       [ 0.32      ,  0.32      ,  0.51333333,  0.87333333,  0.96      ,
         0.95333333,  0.89333333,  0.44      ,  0.34      ],
       [ 0.32      ,  0.51333333,  0.88      ,  0.96      ,  0.96666667,
         0.95333333,  0.90666667,  0.47333333,  0.34      ],
       [ 0.51333333,  0.88      ,  0.96      ,  0.96      ,  0.96      ,
         0.96      ,  0.90666667,  0.47333333,  0.34      ],
       [ 0.88      ,  0.96      ,  0.96      ,  0.96      ,  0.94666667,
         0.96      ,  0.90666667,  0.47333333,  0.34      ],
       [ 0.96      ,  0.96      ,  0.96666667,  0.96      ,  0.94      ,
         0.96      ,  0.90666667,  0.47333333,  0.34      ],
       [ 0.96      ,  0.96666667,  0.96666667,  0.94666667,  0.94      ,
         0.96      ,  0.90666667,  0.47333333,  0.34      ],
       [ 0.96666667,  0.97333333,  0.96      ,  0.94666667,  0.94      ,
         0.96      ,  0.90666667,  0.47333333,  0.34      ],
       [ 0.96666667,  0.96666667,  0.96666667,  0.94666667,  0.94      ,
         0.96      ,  0.90666667,  0.47333333,  0.34      ],
       [ 0.95333333,  0.96      ,  0.96666667,  0.94666667,  0.94      ,
         0.96      ,  0.90666667,  0.47333333,  0.34      ]])
C_range = 10.0 ** np.arange(-2, 9)
gamma_range = 10.0 ** np.arange(-5, 4)

pl.figure(0, figsize=(16,6))
gs = gridspec.GridSpec(1,1)
gs.update(left=0.05, right=0.45, bottom=0.15, top=0.95)
pl.subplot(gs[0,0])
pl.imshow(scores, interpolation='nearest', cmap=pl.cm.spectral)
pl.xlabel('gamma')
pl.ylabel('C')
pl.colorbar()
pl.xticks(np.arange(len(gamma_range)), gamma_range, rotation=45)
pl.yticks(np.arange(len(C_range)), C_range)
gs = gridspec.GridSpec(3,3)
gs.update(left=0.5, right=0.95, bottom=0.05, top=0.95)
pl.subplot(gs[0,0])  # here's where the shift happens

1 个答案:

答案 0 :(得分:1)

您可以在#here之后创建颜色栏,以便发生转变

pl.figure(0, figsize=(16,6))
gs = gridspec.GridSpec(1,1)
gs.update(left=0.05, right=0.45, bottom=0.15, top=0.95)
ax = pl.subplot(gs[0,0])  # save the axes to ax
pl.imshow(scores, interpolation='nearest', cmap=pl.cm.spectral)
pl.xlabel('gamma')
pl.ylabel('C')
pl.xticks(np.arange(len(gamma_range)), gamma_range, rotation=45)
pl.yticks(np.arange(len(C_range)), C_range)
gs = gridspec.GridSpec(3,3)
gs.update(left=0.5, right=0.95, bottom=0.05, top=0.95)
pl.subplot(gs[0,0])  # here's where the shift happens

pl.colorbar(ax=ax) # create colorbar for ax
pl.show()

enter image description here