缩放图形以显示长注释
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了缩放图形以显示长注释相关的知识,希望对你有一定的参考价值。
我已经为一个带有冗长名称的分类热图注释了一个颜色条。绘图时,这些名称不完全可见。 plt.tight_layout()
打破了元素的排列,有时不会显示热图滴答或缩放比例的颜色条和热图。如果不引入其他问题,我怎么能自动使数字更大?
这是一个示例:
import numpy as np
from matplotlib import pyplot as plt
import seaborn as sns
import matplotlib
n_labs = 4
labels = np.floor(np.random.rand(10, 10) * n_labs)
names = np.array(['a'*20] * n_labs)
bounds = np.linspace(-0.5, n_labs - 0.5, n_labs + 1)
norm = matplotlib.colors.BoundaryNorm(bounds, n_labs)
fmt = matplotlib.ticker.FuncFormatter(
lambda z, pos: names[norm(z)]
)
plt.figure()
plt.suptitle('Title')
sns.heatmap(
labels, cmap=plt.get_cmap('copper', n_labs), square=True, linewidths=1, vmax=n_labs,
cbar_kws=dict(
ticks=np.arange(n_labs), format=fmt,
boundaries=bounds, drawedges=True
),
)
plt.tight_layout()
plt.show()
没有和使用tight_layout
的结果:
答案
在我看来,seaborn正在做一些奇怪的边界框计算;无论如何,我之前对plt.tight_layout()
的“聪明猜测”也有很多问题,我现在通常使用gridspec
对图形布局进行更细粒度的控制(增加了对多个子图的控制的好处):
from matplotlib import gridspec
####
omitting your data code here for simplicity...
####
fig=plt.figure(figsize=(3,3),dpi=96,) ##### figure size in inch
gs = gridspec.GridSpec(1, 1, ##### a 1x1 subplot grid
left=0.1,right=0.7, #####<—— play with these values,
bottom=0.0,top=1.0, ##### they give the margins as percentage of the figure
wspace=0.0,hspace=0.0, #####<—- this controls additional padding around the subplot
)
ax = fig.add_subplot(gs[0]) ##### add the gridspec subplot gs[0]
ax.set_title('Title')
sns.heatmap(
labels, cmap=plt.get_cmap('copper', n_labs), square=True, linewidths=1, vmax=n_labs,
cbar_kws=dict(
ticks=np.arange(n_labs), format=fmt,
boundaries=bounds, drawedges=True,
shrink=0.6
),
ax=ax #####<—— it is important to let seaborn know which subplot to use
)
————————
为了让事情或多或少地自动化,请尝试这样绘制:
fig,axes=plt.subplots(1,2, gridspec_kw = {'width_ratios':[20, 1]},figsize=(3,3))
cbar_ax=axes[1]
ax=axes[0]
ax.set_title('Title')
sns.heatmap(
labels, cmap=plt.get_cmap('copper', n_labs), square=True, linewidths=1, vmax=n_labs,
cbar_kws=dict(
ticks=np.arange(n_labs), format=fmt,
boundaries=bounds, drawedges=True,
shrink=0.1,
),
cbar_ax=cbar_ax, #####< it is important to let seaborn know which subplot to use
ax=ax #####< it is important to let seaborn know which subplot to use
)
plt.tight_layout()
plt.show()
在这里,您将创建两个子图(ax
和cbar_ax
)和width_ratio
的20:1
,然后告诉sns.heatmap
实际使用这些轴。 plt.tight_layout()
似乎工作得更好,并尽可能自动,但仍会遇到问题(例如通过设置figsize=(2,2)
它会抛出ValueError: left cannot be >= right
以上是关于缩放图形以显示长注释的主要内容,如果未能解决你的问题,请参考以下文章
音频处理Melodyne 网络缩放功能 ( 音符分离线 | 片段分离线 | 窗口滚动条 | 网格缩放 | 修改图像显示位置 | 显示五线谱 )