gpt4 book ai didi

python - 如何向 Seaborn Clustermap 添加标题?

转载 作者:行者123 更新时间:2023-12-04 17:30:36 27 4
gpt4 key购买 nike

我已经搜索过,但还没有发现如何向 Seaborn Clustermap 添加标题。

我努力了:

plt.title('Title',loc='center')

但这将标题添加到图例,而不是主集群 map 。

我也尝试过,首先创建一个轴对象并为其添加标题(这似乎适用于热图),但问题是 Clustermap 没有绘制在这个轴对象上。它显然在自己的对象上绘图。

谢谢你的帮助...

最佳答案

您可以使用 .fig.suptitle('Your Title')

想象一下来自 Seaborn 文档的集群映射的 this example:

import seaborn as sns
iris = sns.load_dataset("iris")
species = iris.pop("species")
g = sns.clustermap(iris)

你添加一个标题:
g = sns.clustermap(iris).fig.suptitle('Your Title') 

或者干脆:
g.fig.suptitle('Your Title') 

但是,这会为整个图形而不是单个子图添加标题。如果要为子图添加标题,请参阅 @Kiraly Sandor 的解决方案。

enter image description here
g.fig.suptitle('Figure Title')
g.ax_heatmap.set_title('Subplot Title')

关于python - 如何向 Seaborn Clustermap 添加标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49254337/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com