gpt4 book ai didi

python - seaborn热图y轴逆序

转载 作者:IT老高 更新时间:2023-10-28 21:58:09 25 4
gpt4 key购买 nike

看看 this可在 seaborn 热图文档中找到热图。

现在,y 轴从底部的 9 开始,到顶部的 0 结束。有没有办法扭转这种局面,即从底部的 0 开始,以顶部的 9 结束?

最佳答案

看起来 ax.invert_yaxis() 解决了它。

按照您获得该图的示例:

import numpy as np; np.random.seed(0)
import seaborn as sns; sns.set()
uniform_data = np.random.rand(10, 12)
ax = sns.heatmap(uniform_data)
ax.invert_yaxis()

提供: enter image description here

关于python - seaborn热图y轴逆序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34232073/

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