如何调整(偏移)在matplotlib彩条标题彩条、标题、matplotlib

2023-09-12 21:26:25 作者:转角一起走

由于以下code:

  imshow(np.arange(16 * 16).reshape(16,16))
CB =彩条()
cb.set_label(富)
cb.set_ticks([0,255])
 

主要生产:

我如何调整彩条文富,使其向左偏移,介乎0至255,更接近彩条,减少非必要的空白?

解决方案

  cb.set_label(富,labelpad = -1)
 

负labelpad值将逐渐接近了吧,正走。

win10怎么设置彩色标题栏

Given the following code:

imshow(np.arange(16*16).reshape(16,16))
cb = colorbar()
cb.set_label("Foo")
cb.set_ticks([0,255])

Which produces:

How do I adjust the colorbar text "Foo" so that it is offset to the left, betwen the 0 and 255, closer to the colorbar, reducing the un-needed whitespace?

解决方案

cb.set_label("Foo", labelpad=-1)

Negative labelpad values will move closer to the bar, positive away.